I debated that at the time, I maybe should have written it in javascript but I wanted the speed, though I'm not even sure how much faster it really is. The core logic is actually based on JSLint so...
Since Google released their closure tool yesterday (as I'm sure most of you are aware). I thought I may as well release my tool which does the same thing, though on a smaller scale.
Let me get this straight - you want to use free content from another website while removing the features which pay for that content? If you want the movie without the links or adverts - HOST IT...
Could we see an example page? How are you doing the auto-complete code and why can't you just use the same code for all the boxes, not trying to duplicate it.
You're doing every replace, but you're doing them all on the original string. So you replace all the "i"s, and set t1 to that value, then you replace all the "will"s (in the ORIGINAL string, not...
You're calling "new sortableTable()" (non-standard naming convention for an instantiable object, but it is valid) but nowhere that I can see is it defined. Are you sure you've included the correct...
If you use AJAX to request the page, rather than an iframe, then the request will return a result (200, 404, 500 etc) which you can use. I read that topic, which does give a method to do it using...
What error messages do you want to use? You should not be detecting browsers and assuming they do or don't have one of the display methods (they all have "alert"), check for the actual error methods...
</ is defined as the end of the script section however \/ isn't a valid escape sequence so the \ is ignored, giving you want without ending the script. This should be done on...
I'd suggest getting firebug and when you hover over elements it will show you exactly what areas they cover. There's a number of ways to remove it depending on what causes it. An example without...