Hey guys, i'm new to AJAX and i'm trying to make that good n old related combo boxes (like, country -> state). Although in my code the ids and names of the...
Just off the top of my head... you should check to see if the XMLHttpRequest object is available first and use that. IE7 will use that now instead of an...
In fact the XMLHttpRequet is working ok, since I already put some debugging to see if that is working... there is another problem =/ Oh and I've read somewhere...
Sry for double post, but i fund out the problem is relywith IE http://support.microsoft.com/default.aspx?scid=kb;en-us;276228 micrsoft explains tat there is...
dear ,sirmagicsmile08 go to www.org and ask for copey of trhe ajax script even windows will give it to you as long as you say your a web desinger thats what i...
... Hello there, Presuming that you have knowledge about html/javascript see this site: http://www.ibm.com/developerworks/web/library/wa-ajaxintro1.html ...
Hey my friend, i reccomend you read w3schools tutorials about AJAX, they are a nice start and explain really well whats AJAX is all about ;) You'll start doing...
Hi All, Im creating a forum site and I've created all the pages where the forum thread will be shown except the form where the user will create a thread or...
Hey guys, I'd like to know how can i make a mask for my fields with this pattern AA-000. The user always have to type two letters plus a '- ' and then 3...
You haven't given an example of the input information that contains the text alignment that is not being translated properly, so it's very difficult to come to...
... Hi, You need to test against a regular expression. Any letter: [a-zA-Z] Symbol for a digit: \d 2 letters: [a-zA-Z]{2} 3 digits: \d{3} A literal '-'...
... with ... plus a '- ... of ... masking ... if you ... don't ... be ... digits ... as ... of ... end. ... be ... in ... be ... either ... all the ... by a ...
I am looking for help for the capture link's value. Could any body help me out. I need the code for capturing link's target url, anchor text and title of page...
Hi focks, Can anybody suggest me how I can get the value of object's element from a webpage where object name or id is not given. Regards Robin Sridhar ...
You can get an array of all elements and search. If you ask me, it's not worth it. Use an ID or name. --Tim Sabin ... from a webpage where object name or id is...
Hi, I've been trying to get this thing working for a while now, but I think I'm missing something. I'm trying to work out a better and more dynamic method for...
Bryan Garaventa
bgaraventa11@...
Jun 30, 2008 3:51 pm
16155
Hi    how to disable print screen key using javascript. i tried using key code, but not suceeded. plz help me. thanks a lot in advance.  Regards Mathan.C...
I don't think you can. But, you could detect when the Shift key is pressed (since most keyboards need it to press the PrtScn button) and while pressed overlay...
Using ID or name is always better and less expensive for page load time ... From: Tim Sabin <tim@...> Subject: Re: [JavaScript] Capturing the Value of...
... Not possible. Browser JS doesn't have access to system-level functionality such as this. Which is a Good Thing(TM). cheers jon. -- This message has not...
Hi All When I looked at ExtJS source code, I found something strange. could anyone here explain to me? In ext-base.js file they wrap the all code inside: ...
hi i live in iran i dont know language english very mutch can you help me? i want information about java script [Non-text portions of this message have...
This is defining a function then immediately invoking it. Normally you define a function function myFunc () { ... } and you invoke it myFunc (); Here, first...