473,544 Members | 2,074 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Javascript Forum

JavaScript web scripting language - Ask questions about JavaScript development, jQuery, Vue, React, the DOM, cross-browser scripting, event handling, OOP, cookies, client-side form validation, built-in objects like Date, String, Array and Object, performance and more.
1
289
thread by: Danny | last post Jul 23 '05 by: Lee
This is part of a form validation script. I put the the call to this functin behind an onclick event on a button, but how can I access the names of all the form elements below? For starters, I just want to print the names of each element out. IT is not working. I know the loop is being iterated, because if I put a dumm prompt with just...
3
289
thread by: FAQ server | last post Oct 9 '06 by: Saurabh
----------------------------------------------------------------------- FAQ Topic - What books cover javascript? ----------------------------------------------------------------------- The only book currently endorsed by c.l.j. regulars is: JavaScript: The Definitive Guide, 4th Edition By David Flanagan ISBN:0-596-00048-0 (Also by David...
1
289
thread by: FAQ server | last post Feb 4 '07 by: Peter Michaux
----------------------------------------------------------------------- FAQ Topic - What books cover javascript? ----------------------------------------------------------------------- The only book currently endorsed by c.l.j. regulars is: JavaScript: The Definitive Guide, 4th Edition By David Flanagan ISBN:0-596-00048-0 Also by David...
2
290
thread by: FAQ server | last post Jan 25 '07 by: Dr J R Stockton
----------------------------------------------------------------------- FAQ Topic - What do I have to do before posting to clj? ----------------------------------------------------------------------- Before posting to clj, you should thoroughly read this document. You should also check the resources mentioned in section 3 and the Quick...
1
291
thread by: John Hayes | last post Jul 23 '05 by: Michael Winter
Hi, I am a complete newbie when it comes to javascript and I need some help. Our web site creates a text file which I would like the system to ask the user what to do with, either open, save or cancel. Currently we use the code below but that only puts it in the browser window and for the text files that is fine but some of the files are...
1
293
thread by: richk | last post Jul 23 '05 by: Lee
Can someone recommend some Javascript editors....freeware,shareware,and commercial..and if you can please specify which ones are free,shareware and commercial.. thanks in advance
1
294
thread by: sleepinglord | last post Feb 26 '07 by: RobG
1.How to get the class of an object. or how to judge an object has the same type of another. for example. Array. How to judge an object is an Array object or not? typeof() will return "object", ..isPrototypeOf() seems always return false or error. for(a in Array.prototype) tell me, there's nothing in Array.prototype. Then how to?
3
294
thread by: Man-wai Chang | last post Apr 26 '07 by: Randy Webb
Is the implementation for IE 6 different from Firefox? -- iTech Consulting Services Limited Expert of ePOS solutions Website: http://www.itech.com.hk (IE only) Tel: (852)2325 3883 Fax: (852)2325 8288
5
298
thread by: Pontifex | last post Aug 9 '06 by: Dr John Stockton
Hi all, 1. I have a large set of web pages and at the top of each page I have a script that prints out the current date. It's always in the body. Is there a way to put that script in a .js file and invoke it from inside the body?
2
299
thread by: admin | last post Jul 23 '05 by: Tim Slattery
I have problems with my site under firefox, i am using window.open fo opening popups, but under firefox aparentlly no luck
2
299
thread by: Vladimir Veytsel | last post Sep 10 '05 by: Boobie
Please find at the link below samples of JavaScript programming techniques along with several useful fully-functional JavaScripts. http://www.davar.net/INTERNET/JAVA-SCR/JAVA-SCR.HTM References JavaScript Frequently Asked Questions JavaScript programming code patters Applications Thumbnail list generation (picture album support system)
3
299
thread by: =?ISO-8859-1?Q?Une_B=E9v?==?ISO-8859-1?Q?ue?= | last post Jun 2 '08 by: =?ISO-8859-1?Q?Une_B=E9v?==?ISO-8859-1?Q?ue?=
in a script (a simplified L-System) i do have objects constructing other (children) objects by : this.createChild=function(){ return new Ant(...); } all of the children finished their job before the parent one then, i wonder how to destroy (nullify?) those no more usefull objects. saying 'o' is one of this new object i want to "destroy"...
8
300
thread by: FAQ server | last post Aug 19 '06 by: Michael Winter
----------------------------------------------------------------------- FAQ Topic - How can I protect a webpage in javascript? ----------------------------------------------------------------------- In practice you can't. While you could create a suitable encryption system with a password in the page, the level of support you need to do...
1
301
thread by: Jack | last post Jul 29 '06 by: Dr John Stockton
FamilyNet International Newsgate From: Jack <mrdemeanour@nospam.jackpot.uk.net> Harlan Messinger wrote: Convenience, reliability, simplicity. Your washing machine has a microprocessor in it; are you suggesting thast consumers would sooner
1
302
thread by: FAQ server | last post Nov 17 '06 by: Laurent Bugnion
----------------------------------------------------------------------- FAQ Topic - How do I download a page to a variable? ----------------------------------------------------------------------- Within a web-page, you need to either use java, or the XML HTTP Request object, see: http://www.galasoft-LB.ch/myjava/WebLoadFile/Demo/Demo.html...
2
302
thread by: FAQ server | last post Sep 23 '07 by: Randy Webb
----------------------------------------------------------------------- FAQ Topic - Why do some posts have <FAQENTRYin them ? ----------------------------------------------------------------------- If a poster feels that the question they are answering should be covered in the FAQ, placing <FAQENTRYin your post lets the FAQ robot collect...
1
303
thread by: borisov.gleb | last post Jul 20 '07 by: Sean Inglis
Hi, all :) Does anybody know about IE freezing while huge html data inserted via innerHTML? I try to google it, try to research this bug. But nothing. Problem in that code: <b>function</b<u>insertHtml</u(<i>ctrl</i>, <i>html</i>) { alert(1); ctrl.innerHTML = html; alert(2); }
1
303
thread by: Sarkar.mitul | last post Jan 17 '08 by: Thomas 'PointedEars' Lahn
hi.. i want to send post requst Using applet can u please help me?? cheers, mitul
1
304
thread by: FAQ server | last post Nov 13 '06 by: Randy Webb
----------------------------------------------------------------------- FAQ Topic - How do I run a server side script? ----------------------------------------------------------------------- You trigger a server-side script by setting any object's URL. For example a frame, window, or an Image. An image will also "swallow" the data sent back...
3
304
thread by: sanju | last post Apr 7 '08 by: SAM
Dear All, i have 10 textboxes on a form, I require the following validation 1) if i fill the textbox in between(say 5th), then all textboxes before that should be mandatory,ie Textboxes(1,2,3,4) should be mandatory and rest of the textboxes should not be mandatory. Kindly help me out..
1
305
thread by: Richard Trahan | last post Jul 23 '05 by: JimMenees
I'm trying to change the document title to add an asterisk when the document becomes "dirty", as seen on editor applications. I use the code below. Venkman shows that everything looks as expected. The last line is for the debugger, which indicates that the title is changed, but it does not display. var newtitlenode =...
2
307
thread by: Antonie C Malan Snr | last post Jul 23 '05 by: Antonie Malan
Dear All, The top frame contains a form with many select elements. They are used to do database searches. As the selects are based on data in the database which is loaded onLoad (the top page is a JSP) I do not want to load the page in the top frame again after the initial load. The page in the bottom frame is also a JSP and reads a the...
1
308
thread by: Global Hosts Enterprise | last post Jul 23 '05 by: Reply Via Newsgroup
Hi, Anybody ever saw a complete enquiries form with all validation? TQ
2
308
thread by: Steven Sinfield | last post Nov 1 '05 by: Danny
Hi There, I've been trying to work out a function that would change my text color depending on what text is displayed in a particular field. But I seem to be getting myself into one big mess with it. What I want to be able to is have a specific color for a specific string of text. I am sure this can be done but I dont know how, I have...
1
308
thread by: Papajo | last post Mar 6 '06 by: Jonas Raoni
I need a script that would only allow url's with gif or jpg extentions to be entered into a text input form, anything else would get a alert pop up. Any help is appreciated, Joe

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.