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 () {
$.ajax({
url:"/?search="+$("#searchInput").val(),
complete: function( res, status ) {
if ( status === "success" || status === "notmodified" ) {
rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi
$("#content").html(($("<div>").append(res.responseText.replace(rscript, "").replace('autofocus="" ',"")).find("#content"));
}
}
}); 
});
}
addOnloadHook(makeSearchInstant);
Advertisement