Search the web
Sign In
New User? Sign Up
1stJavaScript · This is a group where questions, suggestions, etc can be posted about HTML, JavaScript and CSS, etc.
? 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 2835 - 2865 of 2988   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2835
Re: http://www.trans4mind.com/personal_development/JavaScript/Doublemenu.htm I want to incorporate the double drop-down menu in a currently running online...
microboymega
Offline Send Email
Jun 9, 2008
2:07 pm
2836
Are you passing the information to a Server script using <form action=>? If so, then you should just be able to use the fields. If you're using a 'mailto',...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jun 9, 2008
2:19 pm
2838
As long as you give each element on the page a valid name, you will be able to access them all in ASP using Request.Form(), no matter how the list is updated. ...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jun 9, 2008
2:44 pm
2839
I'm using the "form/action" method. However, that doesn't seem to work. I'm using an ASP file to send the information. From what I can figure out, the ASP form...
microboymega
Offline Send Email
Jun 9, 2008
2:44 pm
2840
This may be a useful tool for learning and working more efficiently in JavaScript, CSS, etc: CSS: http://www.yoyobrain.com/cardboxes/preview/844 JavaScript:...
Elizabeth Barnwell
elizbwell
Offline Send Email
Jun 11, 2008
7:24 am
2841
HI, i am ubscribeing this event but it is not firing i am using this code function init(tableId) { var myColumnHeaders = [ {key:"POID", abbr:"Purchase order...
narendrasinghparmar
narendrasing...
Offline Send Email
Jun 19, 2008
9:19 am
2842
its really bothering me, I dont know what the problem is. The idea is to get a message to display: by cycleing through the loop, each word in the array...
tenchu48203
Offline Send Email
Jun 23, 2008
8:24 am
2843
Hi guys: I have a found a problem using javascript code. Please have a look at this code: <script language=javascript> var numbers = [12.5, 13.5, 8.4 , 8.9,...
sergiokastro
Offline Send Email
Jun 23, 2008
8:24 am
2844
There were 3 small bugs - 'this.onlick', 'new Array' and 'function messages();'. Here is a working version :- <html> <body> <button...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jun 23, 2008
2:29 pm
2845
You need to use Math.round or Math.floor, depending on exactly how you want the result :- http://www.devguru.com/technologies/javascript/10734.asp Rob. ... ...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jun 23, 2008
2:32 pm
2846
Can any one know the javascript function to auto resize the swf when resizing its pop up window. I need to auto resize the swf when i resize my popup window...
anz_muhd
Offline Send Email
Jun 25, 2008
11:06 am
2847
Please send in your current code/page and I'll have a look ... From: 1stJavaScript@yahoogroups.com [mailto:1stJavaScript@yahoogroups.com] On Behalf Of anz_muhd...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jun 25, 2008
12:46 pm
2848
Hi - This may be a ridiculously simple question but I'm very new at this and have alot of questions....I have an assignment due where I need to get input from...
changshamom
Offline Send Email
Jun 30, 2008
7:38 am
2849
I am looking for help for the capture link value. Could any body help me out. I need the code for capturing link's target url, anchor text and title of page...
robinsridhar
Offline Send Email
Jun 30, 2008
7:55 am
2850
Hi I am looking for help for the capture link value. Could any body help me out. I need the code for capturing link's target url, anchor text and title of page...
Robin Sridhar
robinsridhar
Offline Send Email
Jun 30, 2008
7:55 am
2851
Thanks a lot ...Is it okay if I send the file to you tommorrow early morning !!!   Thanks again !! ... From: Atkinson, Robert <ratkinson@...> ...
prashant catoor
prash_umesh
Offline Send Email
Jun 30, 2008
8:19 am
2852
VACANCY System Integrator Company for retail and restaurant looking for a front-end web developer to join our team. This position is full time. Your...
Rara Marulent
marulent
Offline Send Email
Jun 30, 2008
8:23 am
2853
Hi, what i made here is just cancel the onclick event on anchor tag. <script> function captureLink(ele,url) { var id = ele.id; element =...
Vishnu Kumar
svmvishnu2000
Offline Send Email
Jun 30, 2008
10:16 am
2854
The simplest thing is to change all strings to uppercase first - http://www.devguru.com/technologies/javascript/10825.asp Rob. ... From:...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jun 30, 2008
10:26 am
2855
I am trying to create a form on a webpage and i am using PHP to connect to a SQL database, running a query, and putting the results into a java array to be...
Stone
hobbez_13
Offline Send Email
Jul 2, 2008
7:36 am
2856
Please can you paste the HTML page, rather than the PHP source. ... From: 1stJavaScript@yahoogroups.com [mailto:1stJavaScript@yahoogroups.com] On Behalf Of...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jul 2, 2008
8:13 am
2857
here is what the source of the webpage shows is being loaded into the java array: <script type='text/javascript'>var mArray = new Array(new Array(), new...
Stone
hobbez_13
Offline Send Email
Jul 3, 2008
7:40 am
2858
The problem is with the way you're defining the arrays. You need to use this syntax :- var mArray = new Array(); var mArray[0] = new Array(); mArray[0][0] =...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jul 3, 2008
7:51 am
2859
I thank you very much for all your help. I have changed the way i declared the arrays to <script type='text/javascript'>var mArray = new Array(); mArray[0] =...
Stone
hobbez_13
Offline Send Email
Jul 4, 2008
7:55 am
2860
I copied the start of you're code, and it works fine :- <body> <script type='text/javascript'> var mArray = new Array(); mArray[0] = new Array(); mArray[1] =...
Atkinson, Robert
ratkinsonuk
Offline Send Email
Jul 4, 2008
7:59 am
2861
Dear Friends, We are coming on the heels of a very successful beta program with passionate feedback from over 30 beta customers and software engineers. We are...
sean_zephyr
Offline Send Email
Jul 7, 2008
7:47 am
2862
Can we work from home? Kirti Sanghi   ... From: Rara Marulent <marulent@...> Subject: [1stJavaScript] Vacancy: Web Developer To:...
kirti agarwal
kirti_06
Offline Send Email
Jul 7, 2008
7:58 am
2863
Hi,   Can anyone helpme out regarding a sample javascript program. I will be very thankful.   " How to develop a web page following the instructions given...
Muhammad Asif
asifchpk2001
Online Now Send Email
Jul 11, 2008
8:10 am
2864
Hi all. I'm having just a couple of issues with a scriptaclous/prototype accordion menu. I'd like it to display all of the accordion toggles on load (as...
Aaron L.
elmastero2002
Offline Send Email
Jul 11, 2008
8:11 am
2865
Hi all, I'm relatively new to javascript. However, I'm building a interdependent client side options selection list. The tutorials I'm using all call for...
billmcgeeney
Offline Send Email
Jul 15, 2008
7:53 am
Messages 2835 - 2865 of 2988   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