We would like to remind you of this upcoming event. Happy Birthday, JS-Jive! Date: Thursday, February 3, 2005 Time: All Day Js-Jive was formed on February 3,...
JS-Jive@yahoogroups.com
Feb 3, 2005 4:47 am
20587
... Bloody hell... 5 years old!! Making me feel old now! Well Happy Birthday JS-Jive! Hope everyone finds the list as useful now as I did back when it first ...
I'm trying out HTTPRequest for the first time, and so far the process itself works great. Problem is, I'm having a hard time figuring out how to display the...
The result set will be raw HTML page content served by the server. You'll need to parse the content and then use it as you fit deemed ! As in : xmlhttp = new...
Kayode Yusuf
Kayode.Yusuf@...
Feb 3, 2005 4:11 pm
20590
... I get the response I'm wanting -- in this case, a series of OPTION tags and their attributes and values. What I can't make it do is populate the SELECT...
Simple - one or two things : You will need to parse the responseText using regular expression or something else and then extract the option values which you...
Kayode Yusuf
Kayode.Yusuf@...
Feb 3, 2005 4:37 pm
20592
... That makes sense. A lot more involved that I thought it would be, but certainly not impossible to do. Thanks for clarifying that for me. Best, -Bob ...
Hey all, I'm trying to do some DHTML and used to do a TON of it and coded specifically for IE. I am now doing browser compatible coding and ran into a snag. I...
Thanks! I will give this a shot. I am still learning where to find the best APIs for cross-browser scripting, since my head was stuck in the IE sand for so...
OK, this is working fairly well now. It's flawless in Mozilla/Firebird, but doesn't work so well in IE, which gives me an "invalid argument" error. Here's the...
Hi guys, got an odd one for you... I want to have a script that works out the available screen width.. and if it is over a certain amount, I want to have JS...
In my first days with JavaScript I tried dynamic inclusion of js files and was not successful. It wasn't that I couldn't do it, it was that it didn't work...
Bob Hopefully someone else will get the time to look at this in the next few hours, otherwise I'll have a look when I get back from work (Sydney time). Dave S ...
Just having a quick look at the code ... I'm not getting exactly what you're getting, but close enough, I think. ... it later ... reference it later ... This...
Yes but the idea behind this, was to have google adsense ads displayed determined by the users screen resolution. The adwords JS file is remote and not...
Do some Googling for dynamic JS file inclusion. I believe that some people have made it work, but I don't know how they've done it. Another option is to put...
... We actually did something like that ourselves.. we had a perl script into which we would put stories.. it would turn them into js files with numbers as...
... don't ... visible ... I think you'd actually start with the <div> hidden and positioned at the top left (it may need to be on a separate layer to get it...
Glad to help, Honestly JS is one of my weaker points.. Just hate the language.. LOL So, cross-browser DHTML API? Might try: http://cross-browser.com/ ...
OK, I believe I've fixed it. It's working properly in IE and not throwing any more 'valArray[...] is null or not an object' errors ... function processBrands()...
Hi Everyone, I am a javascript beginner. I need to find out some information about how client side javascript may present security threat to the local borwser....
Why can't u just include the contents of your javascript include file into a function and call that function on your conditional? ... -- Ken Auenson, II ...
Hello, I have taken a project where I have to convert PDF applications to a webbased application. The applications must allow the user to fill out fields and...
Hi the innerHTML won't work for js files... any way u can use the following code: <script> document.write("<script src=mylib.js defer=true></script>"); ...
Hey Everyone, I am a javascript beginner. There is one thing that has been puzzled me: I keep reading article about how Javascript could make the local...
... Thanks Alain, Thats what I had to start with.. <script> document.write("<div id='leftad'>"); document.write("<script src=mylib.js defer=true></script>"); ...
What is the easiest method to escape all single quotes in a string? I have a string field that gets passed as a parameter to a js function but the extra quotes...
Hello all, After slaving away at this XMLHTTPRequest thing, I believe I have it working flawlessly. At least it does in IE6/Win and Firefox/Win. If someone...