Thanks. This function will be very useful for login. Hope there's other way to warn the user that the CAPS is on even before the login isn't it? Regards, AJ...
Sure you, can do this using JavaScript instead of VBScript, but it will still require the ActiveX control -- there's no way to get away from that in this...
Depends on how you want to use it. Simply calling the replace() method as I've shown will cause the new page to be loaded as soon as replace() is encountered...
No, there really isn't. The capslock key doesn't generate any events, there's no ASCII code or Unicode equivalent for it, and there's no event property or...
Hi, There is another method of capturing caps-lock (although not 100% foolproof)... Check it out... <SCRIPT LANGUAGE="JavaScript"> function checkCapsLock( e )...
Only with ActiveX are such things possible, vinny, thanks to M$ and their bad defeat at the API wars, if you know what I am talking about. When JavaScript (or...
I need to check to see if the Visitor is at a resolution of 1024x768 when they first Visit our page if anything less popup a box, and tell them that we need to...
You can do that...but they won't... Mark Roberts Sr. Systems Analyst ... From: Brian E Boothe [mailto:subrian@...] Sent: Monday, August 02, 2004 8:09 AM...
use object screen: <script> alert(screen.width+"x"+screen.height); </script> ... From: "Brian E Boothe" <subrian@...> To:...
ATM
mplus@...
Aug 2, 2004 3:10 pm
9629
Hey guys, I'm trying to create a form and send it directly to my email, i'm using dreamweaver and using the mailto: tag but when i send it to my email it...
The *available* screen height and width (which takes into account OS taskbars and the like) are: screen.availWidth and screen.availHeight BTW, I agree with...
What's wrong is trying to use mailto: in order to transmit a form. It's theoretically possible but just not reliable, because you don't know what email client...
I made a print button outside the datagrid so that it can print the datagrid. The code that I wrote is <input class="btnSmall" onclick="window.print()"...
I would like to do a URL lookup within my JavaScript to verify that a URL is valid. The code would look something like this: ===== CODE FOLLOWS === // Set up...
Unfortunately, Rinky, that is not possible at all. This issue has been debated, and is probably going to part of the CSS 3 specs. But we don't have CSS3...
Hi all, Is there any main mistake I can be making for my page fields to be erased as soon as the page is submited again? I have a method, called on the onBlur...
Hi, Try this code... It shd work if the client has Outlook Express or Microsoft Outlook. I'm not sure about the other email clients... <HTML> <HEAD> <script> ...
I'm making a website with mp3 downloads in it. How can I make the mp3 downloadable without right-clicking and save as the link (coz if it's enabled, the...
Hi, There is NO way you can control the printer settings of the local computer using JavaScript. All you can do is, may be, install an ActiveX component on the...
Hi guys, I know one of you can help me this problem ... I have an external .js file named banners.js this is the code in banners.js var pics = [ "<a...
Try this script: <script> //global variables var items = [1,2,3,4,5,6,7,8,9]; var rotator = eval("["+items+"]"); //function that picks a unique random item ...
Leviaguirre Queral Jo...
JLEVIAGU@...
Aug 4, 2004 6:07 pm
9644
Michael, When I first started using PHP (about 5 years ago), I used a tutorial from DevShed.com. That specific tutorial is long gone, but this one looks...
Use a regular expression and the the test() method: var isURL = /^[a-z0-9\-\.]+\.[a-z]{2,6}(\/\S*)*$/i; if( isURL.test(foo) ) msg = "foo is a valid URL"; else ...
HI, YOU CAN USE THE www.w3schools.com WEB SITE FOR PHP VERY SIMPLE AND EASY COAD AT THE W3SCHOOL WEB SITE. SALEEM AHMED ... __________________________________ ...
Hi, I have a parent window that calls a popup to request more information from the user. My problem is that the parent window continues and completes it's...
Well that gets tricky in JavaScript If you wish to include a second code its easy you just add <script src=myscript.js></script> but if you are trying to...