I have code that when I do an ajax call, it refreshes a column but then the mouseover no longer works. I used to have it inline in the div but wanted to move it to jQuery for other reasons. this is my code.
$(".statusbox").live({mouseover:function(){
wal_id = parseInt(this.id.replace("statuscontainer_", ""));
$('#rm_'+wal_id).show();
},mouseout:function(){
wal_id = parseInt(this.id.replace("statuscontainer_", ""));
$('#rm_'+wal_id).hide();}
});
Any ideas?
Try