how to change the name dynamicaly usign jquery grid
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-04-15T22:09:16Z
Indexed on
2010/04/15
22:13 UTC
Read the original article
Hit count: 196
jQuery
hello friends, I am using jquery grid
I have jquery grid with user data..First Coulum is ID..
here is the code
$("#table").click(function(e) {
var row = jQuery(e.target).parent();
Name = row.attr("id");
Friends(Name);
});
Now when i click on the row I am getting Id value.. i am passing this id value to one funcation to dispaly name.. I can able to dispaly the name only frist Id.. its not changing each and every row click?
Can any body help me out thanks
© Stack Overflow or respective owner