Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.Net Ajax $find() Jquery Equivalent

Is there a JQuery equivalent of ASP.Net Ajax's $find() function?

$() != $find()
like image 776
pauldomag Avatar asked Dec 04 '09 19:12

pauldomag


1 Answers

There is not since $find returns the AJAX component related to the DIV element, and not the DOM element. You could build your own plugin that shortcuts the find method.

Microsoft created $find as a way to link their ASP.NET AJAX components to the DOM.

like image 121
Brian Mains Avatar answered Sep 23 '22 08:09

Brian Mains