Search the web
Sign In
New User? Sign Up
JS-Jive · The premiere Yahoo! Javascript Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 20443 - 20472 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20443
The property is read only. It depends also on how you invoke your method after you have crafted it. A function rewritten to be compatible with NS6 too is: ...
~~~~~~~THE HOBBYIST~~...
vallinis
Offline Send Email
Oct 2, 2004
11:35 pm
20444
I want to ensure that a picture is a particular width or height before it is displayed. I have set up a slideshow and second and third pictures are resized but...
Pete Harrison
rang5r
Offline Send Email
Oct 4, 2004
7:42 pm
20445
set the style of the image to display:none <img src="foo.gif" width="100" height="200" style="display: none" id="im"> then with a function you perform the...
~~~~~~~THE HOBBYIST~~...
vallinis
Offline Send Email
Oct 6, 2004
2:28 am
20446
Does anyone have an example of a function that can be assigned to multiple elements onclick event that will return that elements id. I want to use one funtion...
barnesjtsl
Offline Send Email
Oct 6, 2004
6:21 am
20447
I would pass in a reference to the calling element (this) when you call the function. <SCRIPT type="text/javascript"> function clickMe(obj) { var objID =...
Jeff Garza
cf_code
Offline Send Email
Oct 6, 2004
12:55 pm
20448
here is another way you can do it pgsetp = myelementToPlaceImageWithin pgsetp = document.getElementById(pgsetp) pglight = document.createElement('IMG'); ...
Garvin Casimir
khing2
Offline Send Email
Oct 6, 2004
2:13 pm
20449
... for a windows-based, comd-line, JS file (or batch) that will modifiy the System Enviornmental Variables. Below is what I need created. Path needs to be...
jsWalter
otrwalter
Online Now Send Email
Oct 6, 2004
7:19 pm
20450
does anyone know of any performance gain or loss when multiple .js files are used as upposed using one .js file or placing all javascript within the html file...
khing2
Offline Send Email
Oct 11, 2004
1:58 am
20451
hey guys i have a .js file neigher of the following seem to work in firefox. what am i doing wrong?? <script language=javascript src=file.js></script> <script...
khing2
Offline Send Email
Oct 11, 2004
2:06 am
20452
... quote your attributes, and make the type "javascript" and not "css". i think you can get rid of the language attribute, too: <script...
Carlos Mossman
spamcarloshere
Offline Send Email
Oct 11, 2004
3:40 am
20453
This is a server issue question. It all depends on the setup and con fig of your server. How often are these files accessed? And in relation to other files? Is...
jsWalter
otrwalter
Online Now Send Email
Oct 11, 2004
6:47 pm
20454
Hi, Basically, here is what happens. when you click on "link", and hidden div appears. Great so far. What is supposed to happen is when I move my cursor over...
Mark Wheeler
musicarr34
Offline Send Email
Oct 11, 2004
7:21 pm
20455
At a guess, I'd say that the link is capturing the mouse event, so the div thinks the mouse has left. I'd try adding showlayer() as the onmouseover property of...
Ben Doom
doom_tmh
Offline Send Email
Oct 11, 2004
8:20 pm
20456
Hi Ben, Well, that helped keep the div visible. When the cursor LEAVES the link, however, the div goes invisible again. I tried adding an ...
Mark Wheeler
musicarr34
Offline Send Email
Oct 11, 2004
8:55 pm
20457
... You need to think about "event bubbling" -- as demonstrated below: <script type="text/javascript"> function showlayer(name) { ...
Hassan Schroeder
laughingandj...
Offline Send Email
Oct 11, 2004
9:27 pm
20458
Hi Hassan, Thanks for the info. I'm learning more with your suggestion. I've seen what you describe in other code and never fully understood it, but have a...
Mark Wheeler
musicarr34
Offline Send Email
Oct 11, 2004
10:56 pm
20459
This java script seems to be working fine in Netscape 7.2 but does nothing in IE 6.0. can somebody help me out? I also have a very big doubt: If i develop a...
chandrasekar sankaran...
chandu_dream...
Online Now Send Email
Oct 12, 2004
8:08 am
20460
can someone help me with a resize window function? I own a traffic exchange and want to check the window size and if it is less than 640 x 800 to increase it...
Michael Hall
bsmbahamas
Offline Send Email
Oct 12, 2004
8:08 am
20461
The code that you wrote is not the way it is done in IE I worked on fixing it some but I fear that the ip will be hard to get however alot of severs offer a...
Richard Rehll
rich54110
Offline Send Email
Oct 12, 2004
7:01 pm
20462
(I never thought i would see the day) I have this code. It works perfectly in firefox but it doesnt work with MSIE. Allow me to describe it. i have a create a...
khing2
Offline Send Email
Oct 13, 2004
3:54 am
20463
... Chandu, I had a quick look around and found out that the code you posted will only ever work for Netscape. Given the percentage of Netscape users is very...
Stephen Moretti (cfma...
cfdeveloperuk
Offline Send Email
Oct 13, 2004
7:30 am
20464
I am having 2 problems. Firstly, I am loading an array with details from a database via .asp/vbscript that generates the following; "..... var regarray = new...
Pete Harrison
rang5r
Offline Send Email
Oct 13, 2004
11:14 am
20465
Pete, ... You will need to find a way to replace the line breaks with some other character, or escape them "\n" on the server. In javascript the line break is...
Roger Roelofs
rogerroelofs
Offline Send Email
Oct 13, 2004
11:49 am
20466
Roger, You may be right, as there was an error, it being Layer14 rather than layer14. However, having corrected this, both problems still exist! Regards Pete ...
Pete Harrison
rang5r
Offline Send Email
Oct 13, 2004
12:05 pm
20467
Pete, ... Can you put this page on a public server? I think I need to see more context to offer a better suggestion. Roger ... Roger Roelofs...
Roger Roelofs
rogerroelofs
Offline Send Email
Oct 13, 2004
12:37 pm
20468
Hi Michael, Here are a couple of things that might be helpful. 1. Try "screen.availHeight" and "screen.availWidth" to get the demantions you may be looking...
Mark Wheeler
musicarr34
Offline Send Email
Oct 13, 2004
4:04 pm
20469
Hi you mite try html goodies for the code in NS so you what to open a new window I think it will help. Mark Wheeler <musicarr@...> wrote: Hi Michael, ...
Richard Rehll
rich54110
Offline Send Email
Oct 14, 2004
4:07 am
20470
You'r code is java and IE undestand javascript. "Stephen Moretti (cfmaster)" <stephen@...> wrote: ... Chandu, I had a quick look around and found...
Richard Rehll
rich54110
Offline Send Email
Oct 14, 2004
4:19 am
20471
Hi, Here is the link I was thinking about. http://www.howtocreate.co.uk/tutorials/index.php?tut=0&part=16 I hope it's helpful. Mark On Oct 13, 2004, at 9:06...
Mark Wheeler
musicarr34
Offline Send Email
Oct 14, 2004
7:07 am
20472
Here's my question why not just width = "100%" Mark Wheeler <musicarr@...> wrote: Hi, Here is the link I was thinking about. ...
Richard Rehll
rich54110
Offline Send Email
Oct 14, 2004
7:16 am
Messages 20443 - 20472 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help