There are several blocks on the page ... Initially they are hidden by display: none;
When you select the radio function is triggered
$(function() { "use strict"; $('#d_1').change( function(event){ event.preventDefault(); $('#helpblock') .css('display', 'block') .animate({opacity: 1}, 200); }); }); But it works for the first block. And how to make the rest id = "helpblock" also become display: block ;?
class="helpblock"and$('.helpblock')Theidattribute is the unique identifier of the DOM element. - Igor