No. I'm done. Goodbye and good riddance. Mostly because of the REDIRECT not being removed, but also because I can't stand smug assholes who over-estimate the value of what they are doing, and are...
It's annoying. If you don't mind it, you don't mind it. I do. It's a lie. I click on a link to go into a forum, and I get a blank page with a "SKIP THIS AD" link. I'm not taken to the link I...
If you are using jQuery and jQuery-UI, here's a good example of what you are looking for:
http://www.concrete5.org/documentation/how-tos/developers/add-a-slider-control-to-an-edit-menu-or-form/
I did something a few years ago where I used a server-side scripting language (ColdFusion) in conjunction with AJaX and JavaScript. It was a form that could have anywhere from 1 to 1000 rows of form...
I've been working on a personal project for some time, now, and up until recently I've only been testing my project in IE7, FF8, and Chrome. I only just decided that I'm not...
As a band-aid solution (which won't actually fix anything) you could always use RegEx to replace special characters with a wildcard "%" in the search text, that way "Æther Charge" would be searched...
Buttons in most browsers will become gray, if disabled. If you want something different than the standard, create a class for each state, then change the class name as well as the disabled status.
Inside the function, set another variable called "totalChecked" and set it to equal 0. Instead of using "document.form.aceptar.disabled = false;", use "totalChecked = totalChecked + 1;". After the...
Screen scraping will only work in JavaScript if the URL is the same domain. Security issue. If you're trying to scrape from another domain, you need a server-side language like PHP, ColdFusion,...
Some advice, if I may. Don't use an individual alert for each and every incorrect entry. Set a variable called warn to "", and for each incorrect entry:
You're changing the value of the alive variable, but you're not "writing" it. Instead of using document.write, create a div and change the innerHTML to the value of alive. Then, when alive is...