Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Advertisement

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
function makeSearchInstant() {
$("#searchInput").keyup(function () {
$.get("/?search="+$("#searchInput").val(), function (data) { 
$a = $("<div>").append(data);
console.log($a.find("#content").length);
/*
$("#content").html($a.find("#content > *"));
$("#p-namespaces").html($a.find("#p-namespaces > *"));
$("#p-views").html($a.find("#p-views > *"));
$("#p-cactions").html($a.find("#p-cactions > *"));
*/
}); 
});
}
addOnloadHook(makeSearchInstant);
Advertisement