http://phecoopwm6x7azx26ctuqcp6673bbqkrqfeoiz2wwk36sady5tqbdpqd.onion/page-1708042214-Place-AJAX-GET-request-and-trigger-callback-function-with-result-Javascript.html
Yes you can do the same with jQuery, but that's only really a valid route if you're already loading jQuery. Otherwise you're loading an entire framework for no real benefit Similar to jQuery.get() Snippet function fetchPage(url,callback,errcallback){
var xmlhttp;
if (window.XMLHttpRequest){
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}else{
// code for IE6, IE5 (why am I still supporting these?