I have these scrip, it works ok but just with those screen resolution. If u try to put more, lets say 1280x720 and 1280x960 then it dosent work, it will send...
Hi Tim, Thank you for your reply. I understand that firing a Validate function prior to submission of the form is a good way to validate the form and I will be...
What are the values you are getting from screen.width and screen.height? What browser and level are you using? Regards, Dave S ... From: "osman_azizi"...
As I see it, testMe will change the focus if there is a problem. This will cause a blur event for the field that had the focus when testMe was called. If that...
Well, sure, you can use onBlur to make sure they fill in the form, but you must also vakidate when the user hits "submit" for the reasons I first mentioned.....
The infinite loop does not occur in firefox though. The best method is to show a message near the field that the user did not fill. For an example see...
Hi Max. The onblur statement is fired upon the first field (name="number"), then testMe() function is fired changing the focus back to that field, consequently...
Dear Tim I am trying to understand the tecnical english, so i am having hard time to understand the "or" and "and". Please give me a little more explanation...
Hi group. I want to create a complex javascript menu just like the upper menu in target.com website if any one has some links that I can download a similar...
Tim, David, Thank you for your suggestions, I will definitely implement them in my application. I think that David is right about the alert box removing the...
Hi All, I have two check box in my page , both have parameter as fieldname I would like to achieve , if i click the second check box the first one should...
... Umm ... not if it's sending 1280x720 or 1280x960 to 1024x768. OR or AND doesn't make any difference because neither part is true. Osman, what are the...
DATE OBJECT: This built-in object contains both date and time information. The Date object does not have any properties.However, it has a larde number of...
Dear Tim In a answer to your question where I should go back to school i have to say, that i have never attent a computer science 101 since i didt study...
I'm not trying to be "mean" or "nasty". :-) It's just that this group is about JavaScript, not basic computer programming. I'm happy to help out with...
Not necessary a degree, but some of the basic knowledge when it comes to programming, and boolean algebra. There are soooo many dummy books out there and that...
Hi all, I want to remove a specific html tags from string using javascript. I want to remove all html tags except bold and italic and underline. really I need...
I have a server side script that writes my javascript for a select options. The problem I am having is that the option that I tell it to set as the selected...
Sounds to me like an array index problem. What happens if, instead of starting at options[0], you start at options[1]? --Tim Sabin ... to ... get ... --Tim...
Check out the methods of the String class at http://devguru.com/technologies/javascript/10792.asp most especially the split () and substring () methods. You've...