Sorry... I havent got back to read this thread sooner. Thanks for this. This worked great. And this is a much more simple script. Wade ... height will most...
This is the search.js sheet. window.onload = init; function init() { var ajax = getXMLHttpRequestObject(); if (ajax) { if (document.getElementById('results')){...
I spoke a bit too soon here. I thought it worked but.... This is a little test page. It just changes the div from background color green to blue. Right now,...
Provide code for us to review. wadesmart <no_reply@yahoogroups.com> wrote: Im totally new to JS so I got a book titled Building a Web Site with Ajax and I went...
I have searched the web for something that could be set up through javascript to allow for playing Flash or WMV files. For example, if i have a .wmv file and a...
You're right that should work... as long as you have different IDs for all your fields you should not care about what DIV they are on because you could access...
Without a portion of the problematic code is difficult to figure out what's wrong, but here are few thing to check: 1.- For the look of it you have an email...
You have to take in to regards that the css has to load first for the javascript to be able to find the id="css_page" because when the javascript executes...
Real Player can play both file formats. If you embed Real Player in your webpage and seize control of its controls, you should be able to do what you want to...
Why not just load the video and search the video url for file type? if (videoURL.indexOf(".wmv") > -1) { alert("Play Windows Media."); } else { alert("Play...
I believe the problem is the way you are retrieving the data from the XML. See if you have 20 players but only 10 of them have email address then you'll end up...
There's a lot of code quoted there, and some of the subroutines are quite long. (I assume they are indented properly in your code, but this has been stripped...
1) This is not a job board. 2) This board is for JavaScript - not Java. They're two completely different languages. 3) This is not a job board. --Tim Sabin...
Some of the players will not have an email - or just wont put it down on the registration form - so there will be some empty emails. Thinking out loud...
I'm making a website for my wife and she asked for a drop down menu under one of her links so that it does sublinks to her other galleries. Now I have gone to...
Source code: Line 11: { Line 12: oForm.requiredemail.className='backclrPink'; Line 13: alert("The e-mail address you entered is not valid. Please re-enter...
I'm not aware of any JavaScript test for "empty", but there is a test against null. As I think I mentioned in my previous e-mail, I don't know whether you'd ...
You haven't given the context in which this alert statement will be found. I suspect that it's in a event handler. If so, you might need "window.alert"...
Hi.. Hey if ur prob is not solved yet den can u give just simple alert….in js file N let m know Bye bhavesh ... From: JavaScript_Official@yahoogroups.com ...
Hi I am new to javascript,i need a javascript calendar Functionality The user should be allowed to select the date with in the current date and the future...
Try putting the JS file in the same folder or below the ASPX file. Change the backslashes ('\') to forward slashes ('/'). If you are running IIS, create a...
memory gets consumed every time a call the function "sidebar". somebody help me! xD /*************code****************/ function sidebar(title,j){ bar +=...
memory gets consumed every time a call the function "sidebar". /******************************code****************************/ function sidebar(title,j){ bar...
What I see here are two functions called sidebar that are completely different. Which one is the real one? You haven't shown the code that calls sidebar, so...
Hi, I need help with a script that does the following:I have a table that when a user clicks on a row it adds a css class to the row to show that it has been...
the second and the frist function do the same thing the point is: how can I solve the leak problem? I'm adding a very large string in "sidebar" this is the...
Example of code /******************************code****************************/ ... <script> var bar; function sidebar(title,j){ bar += "<br/>"; bar += "<span...
OK, so you're doing 100 replacements of the innerHTML with a string that is getting longer and longer. Why not construct the whole string and then just do one...