Is there a JQuery equivalent of ASP.Net Ajax\'s $find() function?
$() != $find()
There is not a 1to1 equivalent but what you want is $('selector')
Check out the docs on the different selectors
$find('MyComponent') would be $('#MyComponent') $find('MyComponent',div) would be $(div).find('#MyComponent')