Hi,
I want to display a layer and after clicking the close button I need to hide a layer.
for this I am passing the value to the close function (user defined) in the jquery and used the below lines to close. Well it is working in IE but not working in Firefox.
$('.layer_close').click(function(){
$('#TB_overlay').hide();
I tried to add the below code also but not helpful
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($){
//Do jQuery stuff using $
...
...
});
</script>
please help me. it is urgent.