tags:

views:

68

answers:

1

Hello All,

I am using JQuery 1.4.1. I have HTML input elements which created dynamically. I have assigned "focusin" event all input elements. While loading page, it is triggers only once while focusing each input element.

Problem is, When I minimize and maximize the page, focus event is fired multiple times. Finally it show "Stack overflow at line 0".

   $('input').live("focusin",function(objectRef) {
        alert("focusin event");

    })

What could be causing this problem?