this may sound like a silly questions but is there something I can call for offclick events for exmaple I have this currently;
$("#frame_left").click(function() {
$("#navLeft").show();
});
I want to hide the #navLeft content once a user has clicked off of the radio button?
onmouseup? or do you mean, clicking on anything that isn't the element or a child of the element.Clickevent to that class and check if the desired radio button is selected?