$(document).ready(function () {
$('#1a,#2a,#3a,#5a,#6a').click(show_hide);
function show_hide() {
// function logic
$('#cont6').hide();
$('#cont5').hide();
$('#cont4').hide();
$('#cont3').hide();
$('#cont2').hide();
$('#cont1').fadeIn("slow");
if ($.browser.msie && parseInt($.browser.version) == 7) {
this.style.removeAttribute('filter');
}
}
});
The above script doesnt works, can any one tell me whats wrong with it . thanks
You need to change the IDs used on the following line to not use numbers as the first character
IDs starting with numbers are invalid.