Which ActiveX Object should I search for to cover for versions IE 6-8? I was told IE switched their ActiveX Obkect in IE 7 from "Microsoft.XMLHTTP" to...
Hi, I want to implement a dual slider control in JAva script to let the user to pick 2 dates from a date range. The min an max woudl be 2 dates that were...
Hi All, This post is related to my earlier one where I have discussed my problem relating to uploading the THUMBNAIL image. Since I cant waste my time, so I've...
See comments in quoted code below. ... If there's only one record, then name is an array with a single element, and name.length is equal to 1. IIRC,...
Hi i need some javascript notes and programs. please send immediately. try to send vb.net programs  ________________________________ From: javediq_143...
I'm just a beginner, so bear with me. I am experimenting and trying to figure out what conditions I need (for the "if" statement) to make it display "Happy New...
What you need is 3 Date objects: <script type="text/javascript"> <!-- var curDt = new Date (); // Year is set to 2000 no matter what (hack) so this will work...
Ok roup, here is the script if (screen.width==800||screen.height==600) //if 800x600 window.location.replace("http://adworldcorp.com/800x600.html") else if...
I am only getting the first image to play over and over, what am I missing here? var imageSequence = new Array(); imageSequence[0] = "images/imageLoad1"; ...
You are using || which is "OR" not "AND". So the first IF will succeed if the width is 800 OR the height is 600. If you want AND, then use &&. Regards, Dave S ...
This is a simple case of wrong logic. Pseudo-code for the first test, as written, is IF ((width EQ 800) OR (height EQ 600)) THEN which is wrong, because it...
Actually, a second thought too ... You are going to 1280x1024 if you don't get a match on your resolution check. Shouldn't you be going to 800x600 if you...
Your programming language is not JavaScript but ActionScript. I am not familiar with Flash. I guess the problem is the following code: for (var i = 0; i<12;...
Hi Ed, Actually this is ActionScript not Javascript but I'll take a swing. There are a couple of things going on here. In the "for" loop, it looks like you...
JavaScript is not used to access databases. You need server-side code in ASP or similar. Regards, Dave Smart ... From: JavaScript_Official@yahoogroups.com ...
I wonder if you want to do the job under JavaScript. If you do. The solution will be difficult. Since JavaScript is ran in client's browser, it has no...
Thanks for your solution. I will use php to get the data from server and it will be a variable. But how to show the variable with javascript ? Please give me a...
You should consider using temp tables. When I have to change visible information depending on users' choice, I usually fetch all datas in the Javascript (using...
yeah its new ActiveXObject("Msxml2.XMLHTML"); Vijayavelan Rajendran On Thu, Jan 1, 2009 at 2:31 AM, Mordecai Dotan Hegykozi < ... -- VIJAYAVELAN RAJENDRAN ...
I'm working on an html page that is 3 or 4 screens wide. How can I find out how far from the left or right edge of the window a user clicks? (preferably in a...
I'm not following what you are asking about here. Is the page 3 or 4 screens wide - as in actual screens - or is it thousands of pixels wide but will still be...
... Sorry, Dave. I'm trying to use a tool tip script on a page that is 4000 plus pixels wide. I want the tool tip to appear to the right of elements near the...
I need some behaviors for Dreamweaver - specifically Image Viewer - but being that I have an older version, I can't seem to get them from Adobe. Does anyone...
Sorry, no idea what you mean. Regards, Dave S ... From: "Aliu Raimi" <raimialiu@...> To: <JavaScript_Official@yahoogroups.com> Sent: Thursday, February...
Dave and Aliu I'm Martin Frey - and I'm holding a copy of the Daily Telegraph so you'll be able to identify me. I'm trying to program tooltips on a very large...
Hi All: Can anyone send me a simple complete example of how to prevent the execution of a form's default action in the case of invalid form data? My form works...