I'm finding it impossible to search for a particular value within the Address Bar.
var str = window.location;
//var str = "http://www.website.com/78203/";
var x = str.search(/78203/i);
alert(x);
The above code returns nothing, and in fact kills the running of anything else (indicating an error) but nothing is thrown in the console.
If you remove the comment, it runs fine, returning a value of more than -1 (meaning it's found something).
This is obviously something I'm not understanding correctly, can someone help me out?