I\'m new to jquery, but I\'m trying to use it to create a multi-step tabbed form.
One one of the pages, I have radio buttons that will show several fields depending on t
try after you configure the change event.
if( $("input[name='paymentmethod']:checked").length > 0){ $("input[name='paymentmethod']").change(); }
This means that after you load the page, check if there is an option selected and fire the event to get the behavior you want