jquery - Found elements in a string -


say have script

$.get('test.html', function(data){      //data }); 

how can find div specific class inside data??

use data context argument $(selector, context), this:

$.get('test.html', function(data){     $("div.someclass", data) }); 

Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -