Search Results

1
vote

Validate email address in Javascript?

Just parse it with a regex, of which google will yield thouands, such as this …
4
votes

How to show a spinner while loading an image via JavaScript

Use the power of the setTimeout() function (More info) - this allows you set a timer to trigger a function call in the future, …
-1
votes

How can I check for IsPostBack in JavaScript?

Lots of options here. For a pure JS solution, have your page submit to itself, but with additional URL parameter (mypage.html?postback=true) - you can then get the page url with window.loca …
0
votes

Understanding mod_proxy and Apache 2 for writing a comet-server

To answer the specific question about mod-proxy: yes, you can setup mod_proxy to serve content that is generated by a server (or service) that is not public facing (i.e. which is o …
1
vote

Automatically making a div appear based on status of radio button with JavaScript

Because your javascript is not wrapped inside a function, the browser is executing it as soon as it "gets to it". In this case, the JS is being executed before the browser has reached the html dec …
0
votes

Best way to display this in a form?

As this is more about the UI of the application than anything else, I don't think there is going to be a single right answer, as it will come down to a combination of what works (which is difficult …
1
vote

Whats wrong with this code?

As nickf correctly pointed out, you need to enclose the strings you are passing into you function in quotes. You can also short-cut the manual strings by passing in the ID of the image: …