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 16097 - 16126 of 16817   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16097
how to make scroller text from database? i don't know how to connect js,php and mysql, for example I wanna scroll my guestbook,thank you for your advice...
adhe_tmbk
Offline Send Email
May 5, 2008
4:53 pm
16098
I don't know if I understand what you want. When you try to display more than a page's worth of data, the browser will automatically add the appropriate...
Tim Sabin
timsabin
Offline Send Email
May 5, 2008
5:17 pm
16099
Dear Friends, Hope u all doing fine. I m stuck in one problem. Herewith I'm sending one HTML file. My purpose is when I click on "click", I'm generating TR...
Bhavesh Shah
bhavesh101280
Offline Send Email
May 9, 2008
6:02 pm
16100
Attachment has been stripped off your message. Regards, Dave S ... From: "Bhavesh Shah" <b.shah@...> To: <JavaScript_Official@yahoogroups.com> Sent:...
David Smart
smartware_co...
Offline Send Email
May 9, 2008
9:48 pm
16101
Hi: I try to follow the instruction using google map in javascript. Script some times work fine but when i put the values in Your Address Textbox it wont shows...
MEL
girl_moon_godess@...
Send Email
May 12, 2008
2:14 pm
16102
You can see it in this page http://www.w3schools.com/htmldom/met_table_insertrow.asp ... From: "Bhavesh Shah" <b.shah@...> Date: Fri, 9 May 2008...
miguel.rdz@...
Mianrogo
Offline Send Email
May 12, 2008
4:11 pm
16103
Hi, I am making relevant changes on my web server by passing some suitable URL on my web browser (By login through cpanel). To do it often, I am keeping a web...
Leelakh Ran
ran1@...
Send Email
May 12, 2008
4:12 pm
16104
Say on frame 'one' I have this: <a id='testing'>chips</a><br> On the same page something like this works fine: <a ...
caitlin_weaver
Offline
May 12, 2008
4:12 pm
16105
... You can't update the DOM tree of one document from another document that's on a different server. cheers jon. ... -- This message has not been scanned for...
Jon Stephens
jdwayside
Offline Send Email
May 12, 2008
7:57 pm
16106
Say you have a frameset defined like this: <frameset> <frame src='somepage1.html' id='frame1' name='frame1'> <frame src='somepage2.html' id='frame2'...
Alligator
alligator_666
Offline Send Email
May 12, 2008
8:04 pm
16107
Currently I need to capture browser close event. I got help from net but those solutions are not browser independent. Help me....
salam_t2
Offline Send Email
May 13, 2008
5:46 pm
16108
If you truly mean you want to capture the closing of the browser, there are 3 things you need to look for: 1) a mouse click on the screen bottom (for the...
Tim Sabin
timsabin
Offline Send Email
May 13, 2008
6:33 pm
16109
<script> rMail = "walter@..."; var re = /^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z] {2,3})$/i; var re =...
Walter Conti
contiw
Offline Send Email
May 14, 2008
4:28 pm
16110
... <body onUnload="yourFunction();"> this "yourFunction" are one function that you can make a script to do anythings. as onLoad, onUnload can do things...
nickmarinho@...
nickmarinho
Offline Send Email
May 14, 2008
4:28 pm
16111
Dear All, Hope everyone doing fine. Have one doubt in JavaScript. Can we capture radio buttons value when we use history.back (). E.g. I have two radio...
Bhavesh Shah
bhavesh101280
Offline Send Email
May 14, 2008
4:29 pm
16112
Hi. Hope u doing fine. Exactly what you want 2 know? Can u tell again? Thanks and Regards ______________________________________________ Bhavesh Shah l...
Bhavesh Shah
bhavesh101280
Offline Send Email
May 14, 2008
4:30 pm
16113
Hi All, This is my first post in this forum. Please follow this link http://go2bollywood.tv/kajol/index.asp. This is my recent work. As you can see that on the...
javediq_143
Offline Send Email
May 16, 2008
4:20 pm
16114
Reminder from: javascript3 Yahoo! Group http://groups.yahoo.com/group/javascript3/cal Rochelle's birthday Monday May 19, 2008 All Day (This event repeats every...
JavaScript_Official@y...
Send Email
May 18, 2008
11:50 pm
16115
I am wondering which approach would be faster when using setTimeout to execute code. Or, would they run at the same speed? ( The function here is very small,...
Matt Murphy
mmurph211
Offline Send Email
May 20, 2008
6:03 am
16116
Javed, Expand the height of the entire page and put more space between the menu area and the video frame, so that the menus drop down above the video frame;...
shobuz99
Offline Send Email
May 20, 2008
6:03 am
16117
My first guess is that A would be slower b/c the string you pass setTimeout needs to be eval'd. I would use B simply because it's more 'Javascripty', i.e.,...
Ryan Doherty
ryan.doherty
Online Now Send Email
May 20, 2008
5:29 pm
16118
... Approach A is equivalent to setTimeout(new Function('testFunc()'), 1000); Because this adds a slight cost (it's two function calls instead of one),...
liorean
Offline Send Email
May 20, 2008
5:29 pm
16119
A lot would depend on how often you are intending to run the setTimeout code, I would think. If you only run it once, then there is probably little difference....
David Smart
smartware_co...
Offline Send Email
May 20, 2008
10:46 pm
16120
can someone Show examples of a tree menu that reads its Structure from a MySQL database,.? thanks [Non-text portions of this message have been removed]...
Brian E Boothe
codemage67
Offline Send Email
May 21, 2008
5:19 pm
16121
Is approach B a string though? I made it an anonymous function thinking that it wasn't. Let's say they were rewritten as: *Approach A*: var testFunc = function...
Matt Murphy
mmurph211
Offline Send Email
May 21, 2008
5:19 pm
16122
B is not a string. However, like all JavaScript, the string that contains the function definition is interpreted / analyzed. Here's the difference: Approach A...
Tim Sabin
timsabin
Offline Send Email
May 21, 2008
7:28 pm
16123
This is a JavaScript forum. JavaScript in a client page will not have access to a MySQL database. You need client-server code and possibly a different message...
David Smart
smartware_co...
Offline Send Email
May 21, 2008
10:27 pm
16124
Hi. tried looking on the web, on how to do these things, for a java ascript assignment, for one of my subjects, and created a website, but need to do the merit...
Marvin Hunkin
neilmarvin
Offline Send Email
May 22, 2008
4:44 pm
16125
Marvin Your explanation doesn't ring true, frankly. You say you have searched the Internet, etc, but then present two completely separate merit point ...
David Smart
smartware_co...
Offline Send Email
May 22, 2008
10:39 pm
16126
I hope I don't get flamed for doing this but I am going to give you a leg up on the price calculator. It's just a start. There is still the zero filling,...
Dermot
dermotduke
Offline Send Email
May 23, 2008
4:42 pm
Messages 16097 - 16126 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