Difference between find and filter in jquery
问题 I'm working on fetching data from wiki pages. I'm using a combination of php and jquery to do this. First I am using curl in php to fetch page contents and echoing the content. The filename is content.php : $url = $_GET['url']; $url = trim($url," "); $url = urldecode($url); $url = str_replace(" ","%20",$url); echo "<a class='urlmax'>".$_GET['title']."</a>"; echo crawl($url); Then jQuery is used to find the matched elements. $.get("content.php",{url:"http://en.wikipedia.org/w/index.php?action