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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 20885 - 20914 of 21091   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20885
Friends, I have an asp page which generates dynamic form elements based on the number of records in the database for eg: one of the form element is as below ...
arrrteee
Offline Send Email
Mar 22, 2006
2:43 pm
20886
How can I display a calculted value from an input form before submitting the form ? For example, I have somethng like this : <cfoutput> <cfinput type="text"...
sham76
Online Now Send Email
Mar 22, 2006
2:44 pm
20887
The "this" parameter is the form element. If you want its name, ask it (i.e. theField.name). If you want the form, ask the field (i.e. theField.form). ...
David Smart
smartware_co...
Offline Send Email
Mar 23, 2006
9:18 am
20888
I'm not sure what you mean by "display". If you're talking about an alert, then put it in an onsubmit event. If you're talking about putting it into a field...
David Smart
smartware_co...
Offline Send Email
Mar 23, 2006
9:18 am
20889
Hey guys, I can copy and paste php stuff but that is about the extent of my knowledge on it., I use Postnuke for my websites and vbulletin for my forums on my...
Rick
ez3k3l
Offline Send Email
Mar 29, 2006
9:45 pm
20890
Use a hidden field to capture the value to submit And use javascript onblur events to add the values ... From: JS-Jive@yahoogroups.com...
Ernest E. Breau Jr.
cf_ernie
Offline Send Email
Mar 29, 2006
9:45 pm
20891
Hello, I was playing with some editable table elements and Behavious and ran into what seems to me to be a bug in IE (!!!). It's pretty hacky in general I...
fzzzty
Offline Send Email
Mar 29, 2006
9:47 pm
20892
Hi folks, I've got a div on my page with an id of "main". If the viewer's browser is 800 x 600, I want my div to be 290px high. If their browser is larger than...
Dean Hamack
tactics2337
Offline Send Email
Mar 31, 2006
7:04 am
20893
... For the height to be greater than 2000, the height *must* certainly be greater than 600 -- so your first branch will always be true. Try reversing those,...
Hassan Schroeder
laughingandj...
Offline Send Email
Mar 31, 2006
2:12 pm
20894
... Thanks, but it still doesn't work: http://www.americantomahawk.com/new/ And actually, I've used almost that identical code for writing background images of...
Dean Hamack
tactics2337
Offline Send Email
Mar 31, 2006
6:29 pm
20895
screen.height > 600 for the latter if statement Dean Hamack <mailinglists@...> wrote: Hi folks, I've got a div on my page with an id of "main"....
Michael Ballai
mballai
Offline Send Email
Mar 31, 2006
7:09 pm
20896
Isn't it a question of client.height rather than screen.height? ... Jeff Forssell Fil.Lic. i Fysik Nationellt centrum för flexibelt lärande, CFL 0611-55 79...
Jeff Forssell
jeff_forssell
Offline Send Email
Mar 31, 2006
7:09 pm
20897
OK, I've tried client.height, and I've tried simplifying it to: <script language="Javascript"> if(screen.height > 600) { document.main.style.height = '477px'; ...
Dean Hamack
tactics2337
Offline Send Email
Mar 31, 2006
8:00 pm
20898
Dean, ... The javascript console is your friend. It flagged a syntax error. if(screen.height < 2000) { document.main.style.height = '477px'; } else } ...
Roger Roelofs
rogerroelofs
Offline Send Email
Mar 31, 2006
8:18 pm
20899
... And yet still no luck: http://www.americantomahawk.com/new/...
Dean Hamack
tactics2337
Offline Send Email
Mar 31, 2006
9:45 pm
20900
Dean, ... That's what I get for not testing before hitting 'send'. This is tested in ff. function resize() { var el = document.getElementById("main"); ...
Roger Roelofs
rogerroelofs
Offline Send Email
Mar 31, 2006
11:45 pm
20901
Excellent. That works in Safari, IE, and FF on my Mac. So good show Roger. If there is no correlation between the user's screen size and window size, do you...
Dean Hamack
tactics2337
Offline Send Email
Apr 1, 2006
12:03 am
20902
Dean, ... Its a bit more complicated because browsers differ in this area. function winHeight() { var height = 0 if ( typeof( window.innerHeight ) == 'number'...
Roger Roelofs
rogerroelofs
Offline Send Email
Apr 1, 2006
1:58 am
20903
Hi Dean, --"I want to detect a user's screen resolution and dynamically resize a div based on it." -- Whyever would you do that? Do you assume the user always...
Bas van Hoorn
kruidmeester
Offline Send Email
Apr 3, 2006
6:04 pm
20904
... Hi Bas, Yes, you are correct, and that's something I wasn't thinking about at the time. I also figured out I need to change the size of someother elements,...
Dean Hamack
tactics2337
Offline Send Email
Apr 3, 2006
8:16 pm
20905
You have two issues: - Your javascript is running before the body of the page is sent to the browser. - You need to wrap this if/else statement in a function,...
Ken Auenson, II
kja2
Online Now Send Email
Apr 3, 2006
11:11 pm
20906
Hi Dean, Ken, I feel I must apologize for my last mail, as it entered fairly late in the discussion after you already got your solution. For some reason Yahoo...
Bas van Hoorn
kruidmeester
Offline Send Email
Apr 4, 2006
8:24 am
20907
--"There's another function paired with it, resizeCanvas, [... 8<...] and that is called from both the setCanvasSize function and the body.onResize event." -- ...
Bas van Hoorn
kruidmeester
Offline Send Email
Apr 4, 2006
9:00 am
20908
Hi, I want to use the XMLHTTP to transport a lot of dates in my web-site, then I would like to use a default form to transport this dates, that's be easy to...
Marcos
mjsetim
Offline Send Email
Apr 11, 2006
1:17 am
20909
You mean you want to use Ajax? "This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Send Email
Apr 11, 2006
6:11 am
20910
... Yes! But I don't understant how use the AJAX, only the XMLHTTP I understand....
Marcos
mjsetim
Offline Send Email
Apr 12, 2006
6:35 pm
20911
Hey! I really need some help. I'm a senior at CVCC in Lynchburg. I'm supposed to graduate in May, that is if I can get this final semester project done. The...
sassyvagirl2u
Offline Send Email
Apr 16, 2006
3:00 am
20912
SassyVAGirl, ... I realize you may be stuck doing what the client wants (she is the customer after all) but 'fly-out' menus only work for about 90% of the site...
Roger Roelofs
rogerroelofs
Offline Send Email
Apr 16, 2006
4:54 am
20913
Just curious. What prevents the other 10% from using the flyout menus? Is it just not having JavaScript enabled or something else? Thanks....
Debbie Woods
dlnw2
Offline Send Email
Apr 16, 2006
5:43 pm
20914
Using non-cross browser JS is the main culprit. "This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United...
Robertson-Ravo, Neil ...
Neil.Robertson-Ravo@...
Send Email
Apr 16, 2006
6:24 pm
Messages 20885 - 20914 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