After some more experimentation, I found that I can get an onClick event in the body to simulate the onBlur effect as I wanted, by adding a setTimeout to the display code. With a bit of naming...
For a running total for all the sums, one quick and dirty fix would be to declare a global variable "TotalSum" and simply subtract the old value/add the new value on each fire of the function. You...
I believe the problem is that your "rolloverinit()" event targets all Anchor elements, not just the ones with IDs. Simply add a unique name to each anchor element of the image you want to roll over,...
I think what you're looking for is the PHP equivalent of ASP's postback. You can fake it by submitting the page as a form (with itself as the action) and having PHP read the data from...
Not sure quite what the problem is yet, but the order of precedence in your "telefoonvast" / "telefoonmobiel" check appears different then the logic you want:
This *can* be done with CSS and javascript, but you're probably better off limiting results in the SQL statement directly. Depending on your environment, you should be able to use "SELECT TOP" or...
The most secure way to hide what kind of data is in a form is to use the server to generate the webpage based on the login, using a preprocessor like PHP or ASP.NET. You set up a form linked to a...
Well, of course it's not going to work -- the AJAX request isn't actually submitting the form, it's just using the fields. Try putting the alert/confirmation in the emailList function, before the...
Just a thought, perhaps move the confirmation message to an alert dialog that's triggered in the form's onSubmit event? That will halt the form submit until the user clicks OK.
In practice, I've found the easiest way to deal with checkboxes is to store the value of the checked elements as a comma deliminated string in a text field.
Considering the difficulty surrounding properly stylizing a dropdown box (not to mention having a consistent cross-platform appearance) I'm trying to simulate a dropdown menu using javascript and...