using focus function with jquery live
- by Pradyut Bhattacharya
I have a page in which i can successfully use the jquery focus function using live...
$(".comment_text_class").live('focus',
function() {
//do something...
});
but when something comes into the page(ajax loading) the focus function doesn't work
as should be using the live function...
as suggested i used focusin function..
…