Not working for single click..Jquery Grid
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-04-12T14:45:21Z
Indexed on
2010/04/12
14:53 UTC
Read the original article
Hit count: 145
jQuery
$("#table_id").click(function(e) {
var row = jQuery(e.target || e.srcElement).parent();
$("#table_id").bind('click', loaddata);
name= row.attr("id");
});
loaddata is the funcation I am calling on click on each row..
but this cilck event is working for double click.. I mean when you double click its working fyn.. but i need it to work for single click on the row.. is that anything I am doing wrong here?
thanks
© Stack Overflow or respective owner