Search Results

2
votes

What’s the best alternative to an out of control switch statement?

There's nothing wrong with having 20 cases in a switch statement. You can tidy the code by refactoring and, at the very least, move the case processing into methods/functions. …
1
vote

Javascript and Translations

I usually load the appropriate language values as a JavaScript object in a separate file which the rest of my code can reference: var messages = { "loading": "Chargement" } ale …
1
vote

Screen scraping through AJAX and javascript

Ajax/XMLHttpRequest calls are restricted to a same-site policy for security reasons; you can't use them to directly load remote sites. Firefox 3.1 …
1
vote

jQuery Change Div Button States & Click Disable

I would change your click() handler to this: $("div.__button_image").click(function () { $(this).removeClass("__button_image_hover"); $(this).addClass("__button_image_click …
2
votes

Javascript multiple replace

Match against a global regular expression: anotherString = someString.replace(/cat/g, 'dog'); …