jquery selectors and tabs
Hi,
I have working tabs, in one of them (which is called via AJAX) I have
a line similar to the next one:
<a href="#" class="test">test</a>
Unfortunately, I'm failed to get this link via jQuery
jQuery(document).ready(function() {
jQuery('a.test').click(function(){
alert('hi');
});
});
I've got no reaction on clicking on this link.
Is it possible to use jQuery selectors with tabs?
Thanks in advance
Yugene