jquery not working after ajax-jv page refresh ?
Hello,
I myself am new to this business, so the question is about the following situation:
- there is a script on the page that decorates the page:
1
$('.firm_card_container').hover(function(){
2
$(this).children().not('.r_gl_3').css('background-color','#FFE9CC');
3
}, function(){
4
$(this).children().not('.r_gl_3').css('background-color','#EFF9F8');
5
})
when the page loads - the script runs on the content. when content is updated by ajax script - above mentioned script is not working. the site is written on a framework and it is impossible to add code to the framework by adding code to update the above script. Someone tell you what to do.
thanks
jackyjoy
|