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...
Show off your group to the world. Share a photo of your group with us.

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 16405 - 16434 of 16817   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16405
I have these scrip, it works ok but just with those screen resolution. If u try to put more, lets say 1280x720 and 1280x960 then it dosent work, it will send...
osman_azizi
Offline Send Email
Nov 2, 2008
4:44 am
16406
Hi Tim, Thank you for your reply. I understand that firing a Validate function prior to submission of the form is a good way to validate the form and I will be...
Max
obivankenobi
Offline Send Email
Nov 2, 2008
4:44 am
16407
What are the values you are getting from screen.width and screen.height? What browser and level are you using? Regards, Dave S ... From: "osman_azizi"...
David Smart
smartware_co...
Offline Send Email
Nov 2, 2008
6:24 am
16408
As I see it, testMe will change the focus if there is a problem. This will cause a blur event for the field that had the focus when testMe was called. If that...
David Smart
smartware_co...
Offline Send Email
Nov 2, 2008
6:34 am
16409
Your code does an "or" (||) I don't think you want to do that. You want "and" (&&). --Tim Sabin...
Tim Sabin
timsabin
Online Now Send Email
Nov 2, 2008
10:58 am
16410
Well, sure, you can use onBlur to make sure they fill in the form, but you must also vakidate when the user hits "submit" for the reasons I first mentioned.....
Tim Sabin
timsabin
Online Now Send Email
Nov 2, 2008
11:14 am
16411
... The reason is pretty obvious. You are using the 'or' operator (||) where you should be using the 'and' operator (&&)....
abhijit_dutta2003
abhijit_dutt...
Offline Send Email
Nov 3, 2008
8:47 pm
16412
The infinite loop does not occur in firefox though. The best method is to show a message near the field that the user did not fill. For an example see...
abhijit_dutta2003
abhijit_dutt...
Offline Send Email
Nov 3, 2008
8:47 pm
16413
Hi Max. The onblur statement is fired upon the first field (name="number"), then testMe() function is fired changing the focus back to that field, consequently...
Mauricio Rocha
mauriciodarocha
Offline Send Email
Nov 3, 2008
8:47 pm
16414
Dear Tim I am trying to understand the tecnical english, so i am having hard time to understand the "or" and "and". Please give me a little more explanation...
osman_azizi
Offline Send Email
Nov 3, 2008
8:47 pm
16415
Hi group. I want to create a complex javascript menu just like the upper menu in target.com website if any one has some links that I can download a similar...
Abdulla Abdelhaq
abdulla_abde...
Offline Send Email
Nov 3, 2008
8:48 pm
16416
Tim, David, Thank you for your suggestions, I will definitely implement them in my application. I think that David is right about the alert box removing the...
Max
obivankenobi
Offline Send Email
Nov 3, 2008
8:48 pm
16417
function writeMonth(calendarDay, currentTime) { document.write("<table class='monthly_table'>"); writeMonthTitle(calendarDay); writeDayNames() ...
jimmy
jlwalton2078
Offline Send Email
Nov 3, 2008
8:48 pm
16418
Hi All, I have two check box in my page , both have parameter as fieldname I would like to achieve , if i click the second check box the first one should...
sudarshancin
Offline Send Email
Nov 3, 2008
8:48 pm
16419
This is Boolean logic, not English. Boolean AND: AND 0 1 ... 0 0 0 1 0 1 Boolean OR: OR 0 1 ... 0 0 1 1 1 1 This is Computer Science 101...
Tim Sabin
timsabin
Online Now Send Email
Nov 3, 2008
9:37 pm
16420
You haven't even said what it's doing wrong, any errors it's giving, or what you've tried already to fix it. Regards, Dave S ... From: "jimmy"...
David Smart
smartware_co...
Offline Send Email
Nov 3, 2008
9:56 pm
16421
... Umm ... not if it's sending 1280x720 or 1280x960 to 1024x768. OR or AND doesn't make any difference because neither part is true. Osman, what are the...
David Smart
smartware_co...
Offline Send Email
Nov 3, 2008
10:06 pm
16422
Try this <scripttype="text/javascript"language="javascript">{ chk1.checked = val } ...
Abdulla Abdelhaq
abdulla_abde...
Offline Send Email
Nov 4, 2008
9:51 pm
16423
DATE OBJECT: This built-in object contains both date and time information. The Date object does not have any properties.However, it has a larde number of...
M faheem
muhammadfahe...
Offline Send Email
Nov 4, 2008
9:52 pm
16424
... Yes and no. If you check the DOM-1 spec carefully, you'll see it's supported for backwards compatibility, but not really recommended. See ...
Jon Stephens
jdwayside
Offline Send Email
Nov 10, 2008
12:02 pm
16425
Dear Tim In a answer to your question where I should go back to school i have to say, that i have never attent a computer science 101 since i didt study...
osman_azizi
Offline Send Email
Nov 10, 2008
7:29 pm
16426
I'm not trying to be "mean" or "nasty". :-) It's just that this group is about JavaScript, not basic computer programming. I'm happy to help out with...
Tim Sabin
timsabin
Online Now Send Email
Nov 10, 2008
8:03 pm
16427
Not necessary a degree, but some of the basic knowledge when it comes to programming, and boolean algebra. There are soooo many dummy books out there and that...
Lee Mahan
williamlmahan
Offline Send Email
Nov 12, 2008
12:21 am
16428
Hi all, I want to remove a specific html tags from string using javascript. I want to remove all html tags except bold and italic and underline. really I need...
Abdulla Abdelhaq
abdulla_abde...
Offline Send Email
Nov 13, 2008
9:05 pm
16429
I have a server side script that writes my javascript for a select options. The problem I am having is that the option that I tell it to set as the selected...
Soren
sorenwinslow
Offline Send Email
Nov 13, 2008
9:05 pm
16430
Sounds to me like an array index problem. What happens if, instead of starting at options[0], you start at options[1]? --Tim Sabin ... to ... get ... --Tim...
Tim Sabin
timsabin
Online Now Send Email
Nov 13, 2008
9:15 pm
16431
Check out the methods of the String class at http://devguru.com/technologies/javascript/10792.asp most especially the split () and substring () methods. You've...
Tim Sabin
timsabin
Online Now Send Email
Nov 13, 2008
9:18 pm
16432
Sounds like a job for... REGULAR EXPRESSIONS, MAN! :) Seriously, using string methods is overkill if you, as you say, ... ...
Jon Stephens
jdwayside
Offline Send Email
Nov 14, 2008
7:29 am
16433
On Wed, Nov 12, 2008 at 3:00 PM, Abdulla Abdelhaq ... Althought it's not a good implementation, here it's a ready code: ...
Jonas Raoni
jonasraoni
Offline Send Email
Nov 14, 2008
6:24 pm
16434
If I stared the options at 1 instead of 0, then my first option was blank and it still showed the next option. So, I went ahead and also added: ...
soren.j.winslow@...
sorenwinslow
Offline Send Email
Nov 14, 2008
6:24 pm
Messages 16405 - 16434 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