jquery typeWatch with Dynamic input fields added on the fly.
- by mtyagi
How can i get the Id of the input field added on the fly?
My script adds the input fields on click on the button , using
var ix = 1;
$(template2(ix++)).appendTo("#dataTable tbody");
var template2 = jQuery.format($("#template2").val());
I also add this , line after the insertion of the new fields, so it adds the typeWatch to all the .email class fields.
$(".email").typeWatch( { highlight:true, callback:function(){alert("changed search text"); }, wait:750 } );
now, in the callback function , I want to get the Id of the input field typeWatch Callback is triggered.
Please advice.
Thanks