Hey guys, what function could I use to say, if this radio button is checked show this \'div\'. Thanks in advance.
This is what I use. Replace “mydiv” with the id of your radio button and “content1” with the content you want to show/hide.
Post some html if you need further help.
$(document).ready(function(){
$('#content1').hide();
$('a').click(function(){
$('#content1').show('slow');
});
$(‘#mydiv’).click(function(){
$('#content1').hide('slow');
})
});
Rick