asp.net - jquery gridview -
On my pages, ASP Net 3.5 is hyperlinks inside and outside the gridview. Is there any way to determine how was clicked - inside or outside? All Gridview has the same CSS class but I do not want to use CssClass for any element of the grid.
$ ("a"). Click (function (e) {// This feature does not exist, it is only giving an idea if ($ (this) .attr ('ParentClass') = "GridViewClass") {} else {}});
Try this selector.
$ ('.GridViewClass a')
Comments
Post a Comment