Search the web
Sign In
New User? Sign Up
JavaScript_Official · JavaScript . AJAX . ActionScript
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? 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 13659 - 13688 of 16817   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13659
... Use the element's tagName property: alert( document.getElementById('someElement').tagName ); -- This message has not been scanned for viruses. Since I do...
Jon Stephens
jdwayside
Offline Send Email
Jun 1, 2006
10:36 am
13660
OK. Sounds as though it's something in the editor (which I don't have). I can't see anything actually wrong with your code. Regards, Dave S ... From:...
David Smart
smartware_co...
Offline Send Email
Jun 1, 2006
1:52 pm
13661
Hi all, i created a 4 different drop downs.when a value is seleted frm a drop down i open a pop up and there i need to get name of the drop down where the ...
praveen r likki
likki_007reddy
Offline Send Email
Jun 1, 2006
2:19 pm
13662
... Post as a bug to the author ;] -- Jonas Raoni Soares Silva http://www.jsfromhell.com...
Jonas Raoni
jonasraoni
Offline Send Email
Jun 1, 2006
8:22 pm
13663
... //simple concatenation, no JSP/ASP necessary window.open('xyz.jsp?dropdown='+name+' ','',''); window.open('xyz.jsp?dropdown=<%= name %>','',''); ... -- ...
f3l
kyoosho
Offline Send Email
Jun 1, 2006
8:22 pm
13664
You gotta a point....
Fernando (UK)
fernandosouz...
Offline Send Email
Jun 2, 2006
12:27 am
13665
... What this does is to try to open the URL xyz.jsp?dropdown=%3C%25%3D%20name%25%3E which is just the URL-encoding for xyz.jsp?dropdown=<%= name %> That's...
Jon Stephens
jdwayside
Offline Send Email
Jun 2, 2006
2:21 am
13666
function openWindow(name,value) { window.open('xyz.jsp?dropdown=<%= name %>','',''); } in this u use jsp tag if u not declare it wont work it should be like...
Karthikeyan
seenukarthi
Offline Send Email
Jun 2, 2006
9:11 am
13667
HI , i have two dropdown boxes..both multiselect. 1.Group 2 Business Unit now there are many few groups in the GroupDropdown. and for every Group selected...
anurag sharma
anurag_3dec
Offline Send Email
Jun 2, 2006
9:20 am
13668
Hi there, I wonder if anyone use this and how you solve this. I use a dropdownlist and I have a div (a menu) and sometime this menu is above the dropdownlist....
Marius Dima
ddmma
Offline Send Email
Jun 2, 2006
4:28 pm
13669
How do I set the cursor position to 0 (zero) in a textarea field? Thanks F....
Fernando (UK)
fernandosouz...
Offline Send Email
Jun 2, 2006
4:28 pm
13670
Hello anurag, take Droplist and give the multiple now you can select more than one value from Group dropDown list. Multiple selected value return comma...
virendra gupta
viru_siet
Offline Send Email
Jun 2, 2006
4:29 pm
13671
Hello everyone: Hello everyone: I am doing an exercise try to validate user entry in a text field (name field). I want to exclude underscore from user input,...
flashqa1
Offline Send Email
Jun 2, 2006
4:34 pm
13672
unfortunately, this is a bug in IE. It is rumored that the new version of IE coming out soon will fix this problem. you have two options: 1) create an IFRAME...
Ken Auenson, II
kja2
Online Now Send Email
Jun 2, 2006
7:06 pm
13673
Hi, what about this: <script> var input="u1n*der_score"; alert( input.match(/\W|_|\d/g) ) </script> is it it? Maybe. That's what I would try as first, at any...
vallinis
Offline
Jun 2, 2006
7:08 pm
13674
... f3l, thinks he know everything, but he doesnt, he's just a stupid dumbass. firstPat = /^[a-zA-Z]+$/ firstPat = /^[a-zA-z]+$/ would catch the chars...
f3l
kyoosho
Offline Send Email
Jun 2, 2006
7:13 pm
13675
first of all, i don't wanna start a flame war here, i just wanna point out something , so hear me out. Dear mr "flashqa1", this is not an attack against you,...
f3l
kyoosho
Offline Send Email
Jun 2, 2006
7:21 pm
13676
... Internet Explorer does not reliably support z-index positioning of forms or form elements. Select widgets and buttonsa are particularly bad in this regard....
Jon Stephens
jdwayside
Offline Send Email
Jun 2, 2006
7:22 pm
13677
My question is how to check the value of textbox aa in java script. I try it but it shows error: Some thing object not supported Do while not rs.EOF i=i+1 ...
Kathy Iwasik
girl_moon_godess@...
Send Email
Jun 2, 2006
8:28 pm
13678
... the ... a,c,b,... z ... Ok, but that does not intercept the underscore at times. input="abc_" firstPat = /^[a-zA-z]+$/ alert( firstPat.test(input)...
vallinis
Offline
Jun 2, 2006
9:41 pm
13679
Hello Ken, thank you for your response. I hide already the select lists in my app It's good to know that others had the same problem :) "Ken Auenson, II"...
Marius DIMA
ddmma
Offline Send Email
Jun 2, 2006
9:42 pm
13680
... I left an example of "2)" here: <URL:http://jsfromhell.com/geral/hittest/example>, it hides just the necessary elements, not all the selects. -- Jonas...
Jonas Raoni
jonasraoni
Offline Send Email
Jun 2, 2006
9:42 pm
13681
... that's gotta be the weirdest javascritp ever... input type=text name=aa value=arr(i,0) ... -- //f3l http://www.geocities.com/kyoosho/ [Non-text portions of...
f3l
kyoosho
Offline Send Email
Jun 2, 2006
9:43 pm
13682
Don't use an iframe to try to fix this as Opera has the same bug for iframes as IE has for selects and so you woud not actually fix the problem, just switch it...
Stephen Chapman
felgall_com_au
Offline Send Email
Jun 2, 2006
9:52 pm
13683
... Sure, the A-z translates to \x41-\x7a, which includes the "_" character and others :] ... You mean this /^[^a-zA-Z\s]+$/g ?!? If yes, it doesn't make...
Jonas Raoni
jonasraoni
Offline Send Email
Jun 3, 2006
4:24 pm
13684
Hey folcs Ive got a simple code that works in IE and doesnt work in mozilla. here it is <html> <script> function teste(event) { ...
Mv Mv
mvlixo@...
Send Email
Jun 3, 2006
4:25 pm
13685
... IE's event model is based n an early draft not the actual W3C spec, you should use charCode, (i think),when Gecko based, and keyCode otherwise, please,...
f3l
kyoosho
Offline Send Email
Jun 3, 2006
8:07 pm
13686
Sry but you didnt understand the problem. My problem isnt on keycode, that works on both browsers. The problem is the "logical sequence" i think onblur should...
Mv Mv
mvlixo@...
Send Email
Jun 4, 2006
7:20 pm
13687
Can any one please give me an example or link of creating array of text box using javascript and its handling. Thanks in advance ... Sneak preview the all-new...
Kathy Iwasik
girl_moon_godess@...
Send Email
Jun 4, 2006
10:03 pm
13688
... ok, i'll give you that. The problem is the "logical sequence" ... that's weird, i get "false" on IE6 and true on ffx 1.5, sinse you sem to be trying to act...
f3l
kyoosho
Offline Send Email
Jun 5, 2006
5:25 pm
Messages 13659 - 13688 of 16817   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