I have the following code:
$(\'ul.questions li a\').click(function(event) { $(\'.tab\').hide(); $($(this).attr(\'href\')).fadeIn(\'slow\'); event
This works for me
$('ul.questions li a').click(function(event) { event.preventDefault(); $('.tab').hide(); window.location.hash = this.hash; $($(this).attr('href')).fadeIn('slow'); });
Check here http://jsbin.com/edicu for a demo with almost identical code