So,
This seems to work.
jQuery(document).ready(function($) { $( "#opener" ).click(function() {
$( ".thing" ).toggle( "fade" );
}); });
Maybe the input has to be a button – otherwise it doesnt work.
<button id="opener">fade</button>
Please confirm or let me know – though effects work with button(otherwise they don’t seem to work.)
Thanks!