Prepare for your Next Interview
This is a discussion on How to use JavaScript in HTML page within the JavaScript forums, part of the Web Development category; How to use JavaScript in HTML page In this JavaScript tutorial you will learn how to use JavaScript in HTML page, how to write output to a page, different places ...
|
|||
|
How to use JavaScript in HTML page
How to use JavaScript in HTML page
In this JavaScript tutorial you will learn how to use JavaScript in HTML page, how to write output to a page, different places where JavaScript can be paced in HTML, JavaScript in external file and how to place and execute JavaScript in external file. Read More... |
| Sponsored Links |
|
|||
|
Re: How to use JavaScript in HTML page
Hi,
just create a .js file using notepad editor i mean javascript function u bind the javascript file in html using script tag 'src' attribute like Ex: Example.js ---------- function f1(t) { if (t.value=' '){ alert('Text Box shold not be empty') } } Example.html ------------- when ever u click the button it will call the js file f1 funtion it will verify the text box data if it empty it will give the alert message if not nothing will happen. do u have any quries let me know...... Regards, Hari Prasad Last edited by hari.nattuva : 06-13-2007 at 09:36 AM. |
| The Following User Says Thank You to hari.nattuva For This Useful Post: | ||
|
|||
|
Re: How to use JavaScript in HTML page
How to Handle Older Browsers
Browsers that do not support JavaScript will display the script as page content. To prevent them from doing this, we may use the HTML comment tag: The two forward slashes at the end of comment line (//) are a JavaScript comment symbol. This prevents the JavaScript compiler from compiling the line. |
|
|||
|
Re: How to use JavaScript in HTML page
With traditional programming languages, like C++ and Java, each code statement has to end with a semicolon.
Many programmers continue this habit when writing JavaScript, but in general, semicolons are optional! However, semicolons are required if you want to put more than one statement on a single line. |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Convert PDF to HTML with IntraPDF's PDF to HTML converter and reach widest audience! | JobHelper | Geeks Lounge | 0 | 04-08-2007 04:03 AM |
| any limitation in javascript? | psuresh1982 | JavaScript | 3 | 04-04-2007 08:05 AM |
| JavaScript Tutorials | admin | JavaScript | 2 | 03-22-2007 07:17 PM |
| refresh the page using javascript... | psuresh1982 | JavaScript | 5 | 02-03-2007 07:36 AM |
| PHP Code to email HTML Page along with PDF Attachment | Shivanna | PHP | 0 | 10-11-2006 04:57 AM |