SlideShare a Scribd company logo
JavaScript - Placement in HTML File
Brought to you by www.SiryMedia.in
• There is a flexibility given to include JavaScript code anywhere in
an HTML document. However the most preferred ways to include
JavaScript in an HTML file are as follows −
• Script in <head>...</head> section.
• Script in <body>...</body> section.
• Script in <body>...</body> and <head>...</head> sections.
• Script in an external file and then include in <head>...</head>
section.
• In the following section, we will see how we can place JavaScript
in an HTML file in different ways.
JavaScript in <head>...</head> section
• If you want to have a script run on some event, such as when a
user clicks somewhere, then you will place that script in the head
as follows −
• <html> <head>
• <script type="text/javascript"> <!-- function sayHello() {
alert("Hello World") } //--> </script>
• </head> <body>
• <input type="button" onclick="sayHello()" value="Say Hello" />
</body> </html>
JavaScript in <body>...</body> section
• If you need a script to run as the page loads so that the
script generates content in the page, then the script goes in
the <body> portion of the document. In this case, you
would not have any function defined using JavaScript. Take
a look at the following code.
• <html> <head> </head> <body> <script
type="text/javascript"> <!-- document.write("Hello World")
//--> </script> <p>This is web page body </p> </body>
</html>This code will produce the following results −
JavaScript in <body> and <head> Sections
• You can put your JavaScript code in <head> and <body> section
altogether as follows −
• <html> <head>
• <script type="text/javascript">
• <!-- function sayHello() { alert("Hello World") } //--> </script>
</head> <body>
• <script type="text/javascript"> <!-- document.write("Hello
World") //--> </script> <input type="button" onclick="sayHello()"
value="Say Hello" />
• </body> </html>
JavaScript in External File
• As you begin to work more extensively with JavaScript, you will be
likely to find that there are cases where you are reusing identical
JavaScript code on multiple pages of a site.
• You are not restricted to be maintaining identical code in multiple
HTML files. The script tag provides a mechanism to allow you to store
JavaScript in an external file and then include it into your HTML files.
• Here is an example to show how you can include an external
JavaScript file in your HTML code using script tag and its src attribute.
• <html> <head>
• <script type="text/javascript" src="filename.js" ></script>
• </head> <body> ....... </body> </html>
• To use JavaScript from an external file source, you need to
write all your JavaScript source code in a simple text file
with the extension ".js" and then include that file as shown
above.
• For example, you can keep the following content
in filename.js file and then you can use sayHello function in
your HTML file after including the filename.js file.
• function sayHello() { alert("Hello World") }
Thank You
For more updates subscribe to our YouTube channel
SiryMedia
To watch more videos visit our website
www.sirymedia.in

More Related Content

What's hot

JavaScript Introduction
JavaScript IntroductionJavaScript Introduction
JavaScript Introduction
Jainul Musani
 
poornamatha : poornamitham poornath-poorna-muthatchyathe |
poornamatha :  poornamitham poornath-poorna-muthatchyathe |poornamatha :  poornamitham poornath-poorna-muthatchyathe |
poornamatha : poornamitham poornath-poorna-muthatchyathe |
ashokha
 
46h interaction 1.lesson Hello world
46h interaction 1.lesson Hello world46h interaction 1.lesson Hello world
46h interaction 1.lesson Hello world
hemi46h
 
Open course(programming languages) 20150318
Open course(programming languages) 20150318Open course(programming languages) 20150318
Open course(programming languages) 20150318
JangChulho
 
Introduction to html & css
Introduction to html & cssIntroduction to html & css
Introduction to html & css
sesharao puvvada
 
Teaching Web Frontend Technologies To A Toddler
Teaching Web Frontend Technologies To A ToddlerTeaching Web Frontend Technologies To A Toddler
Teaching Web Frontend Technologies To A Toddler
Oludotun Longe
 
Miami media-party-html-css
Miami media-party-html-cssMiami media-party-html-css
Miami media-party-html-css
Rachel Schallom
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
Mohammed Hussein
 
HTML5 - Just the basics
HTML5 - Just the basicsHTML5 - Just the basics
HTML5 - Just the basics
James VanDyke
 
Html Layout Explained
Html Layout ExplainedHtml Layout Explained
Html Layout Explained
21 Lessons
 
Intermediate Web Design
Intermediate Web DesignIntermediate Web Design
Intermediate Web Design
mlincol2
 
Meta Programming with JavaScript
Meta Programming with JavaScriptMeta Programming with JavaScript
Meta Programming with JavaScript
jeresig
 
Introduction to java_script
Introduction to java_scriptIntroduction to java_script
Introduction to java_script
Basavaraj Hampali
 
Responsive Templates in Joomla!
Responsive Templates in Joomla!Responsive Templates in Joomla!
Responsive Templates in Joomla!
David Hurley
 
Deliverance talk at plone meetup
Deliverance talk at plone meetupDeliverance talk at plone meetup
Deliverance talk at plone meetup
Jazkarta, Inc.
 
Java script
Java scriptJava script
Java script
Sukrit Gupta
 

What's hot (20)

JavaScript Introduction
JavaScript IntroductionJavaScript Introduction
JavaScript Introduction
 
poornamatha : poornamitham poornath-poorna-muthatchyathe |
poornamatha :  poornamitham poornath-poorna-muthatchyathe |poornamatha :  poornamitham poornath-poorna-muthatchyathe |
poornamatha : poornamitham poornath-poorna-muthatchyathe |
 
Css inclusion
Css   inclusionCss   inclusion
Css inclusion
 
46h interaction 1.lesson Hello world
46h interaction 1.lesson Hello world46h interaction 1.lesson Hello world
46h interaction 1.lesson Hello world
 
Coldfusion with Keith Diehl
Coldfusion with Keith DiehlColdfusion with Keith Diehl
Coldfusion with Keith Diehl
 
Open course(programming languages) 20150318
Open course(programming languages) 20150318Open course(programming languages) 20150318
Open course(programming languages) 20150318
 
Learn html through programs
Learn html through programsLearn html through programs
Learn html through programs
 
Kamis04
Kamis04Kamis04
Kamis04
 
Introduction to html & css
Introduction to html & cssIntroduction to html & css
Introduction to html & css
 
Teaching Web Frontend Technologies To A Toddler
Teaching Web Frontend Technologies To A ToddlerTeaching Web Frontend Technologies To A Toddler
Teaching Web Frontend Technologies To A Toddler
 
Miami media-party-html-css
Miami media-party-html-cssMiami media-party-html-css
Miami media-party-html-css
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
 
HTML5 - Just the basics
HTML5 - Just the basicsHTML5 - Just the basics
HTML5 - Just the basics
 
Html Layout Explained
Html Layout ExplainedHtml Layout Explained
Html Layout Explained
 
Intermediate Web Design
Intermediate Web DesignIntermediate Web Design
Intermediate Web Design
 
Meta Programming with JavaScript
Meta Programming with JavaScriptMeta Programming with JavaScript
Meta Programming with JavaScript
 
Introduction to java_script
Introduction to java_scriptIntroduction to java_script
Introduction to java_script
 
Responsive Templates in Joomla!
Responsive Templates in Joomla!Responsive Templates in Joomla!
Responsive Templates in Joomla!
 
Deliverance talk at plone meetup
Deliverance talk at plone meetupDeliverance talk at plone meetup
Deliverance talk at plone meetup
 
Java script
Java scriptJava script
Java script
 

Viewers also liked

Le marché de l’aqualudique en France en 2016
Le marché de l’aqualudique en France en 2016Le marché de l’aqualudique en France en 2016
Le marché de l’aqualudique en France en 2016
GL events
 
Backdropsource
Backdropsource Backdropsource
Backdropsource
Ace Maxwell
 
সম্পর্কে মধুরতা বজায় রাখতে দুজনের মাঝেই থাকতে হবে যে গুণগুলো!
সম্পর্কে মধুরতা বজায় রাখতে দুজনের মাঝেই থাকতে হবে যে গুণগুলো!সম্পর্কে মধুরতা বজায় রাখতে দুজনের মাঝেই থাকতে হবে যে গুণগুলো!
সম্পর্কে মধুরতা বজায় রাখতে দুজনের মাঝেই থাকতে হবে যে গুণগুলো!
Beauty World
 
Equipo 1
Equipo 1Equipo 1
Equipo 1
Aleks Antonio
 
Educación fisica
Educación fisicaEducación fisica
Educación fisica
Maria Zavarce
 
CHEM 131 Final Exam
CHEM 131 Final ExamCHEM 131 Final Exam
CHEM 131 Final Exam
AllenMcCarty
 
Catalog Arabesque Galati - 20 octombrie - 30 noiembrie
Catalog Arabesque Galati - 20 octombrie - 30 noiembrieCatalog Arabesque Galati - 20 octombrie - 30 noiembrie
Catalog Arabesque Galati - 20 octombrie - 30 noiembrie
Arabesque
 
Parss politique commune grh du secteur de sécurité octobre 2016
Parss politique commune grh du secteur de sécurité octobre 2016Parss politique commune grh du secteur de sécurité octobre 2016
Parss politique commune grh du secteur de sécurité octobre 2016
Fatoumata Chérif
 
142329so
142329so142329so
142329so
Cesar Jimenez
 
Dialnet principales aportesdelafisicaa-lafilosofiadelamente-4193700
Dialnet principales aportesdelafisicaa-lafilosofiadelamente-4193700Dialnet principales aportesdelafisicaa-lafilosofiadelamente-4193700
Dialnet principales aportesdelafisicaa-lafilosofiadelamente-4193700Mynor R. Martínez
 
Modernismo y 98
Modernismo y 98Modernismo y 98
Modernismo y 98anjuru68
 
Lamborghini aventador
Lamborghini aventadorLamborghini aventador
Lamborghini aventadorsidokar
 
Silaboims
SilaboimsSilaboims
Silaboims
Cesar Jimenez
 
Week 3
Week 3Week 3
Week 3
WanSurang FK
 
The Predictive Power of Intraday-Data Volatility Forecasting Models: A Case S...
The Predictive Power of Intraday-Data Volatility Forecasting Models: A Case S...The Predictive Power of Intraday-Data Volatility Forecasting Models: A Case S...
The Predictive Power of Intraday-Data Volatility Forecasting Models: A Case S...
inventionjournals
 
Webquest de espanol
Webquest de espanolWebquest de espanol
Webquest de espanolbellelaufer
 

Viewers also liked (18)

Madona s CVvv
Madona s CVvvMadona s CVvv
Madona s CVvv
 
Le marché de l’aqualudique en France en 2016
Le marché de l’aqualudique en France en 2016Le marché de l’aqualudique en France en 2016
Le marché de l’aqualudique en France en 2016
 
Backdropsource
Backdropsource Backdropsource
Backdropsource
 
সম্পর্কে মধুরতা বজায় রাখতে দুজনের মাঝেই থাকতে হবে যে গুণগুলো!
সম্পর্কে মধুরতা বজায় রাখতে দুজনের মাঝেই থাকতে হবে যে গুণগুলো!সম্পর্কে মধুরতা বজায় রাখতে দুজনের মাঝেই থাকতে হবে যে গুণগুলো!
সম্পর্কে মধুরতা বজায় রাখতে দুজনের মাঝেই থাকতে হবে যে গুণগুলো!
 
Equipo 1
Equipo 1Equipo 1
Equipo 1
 
Educación fisica
Educación fisicaEducación fisica
Educación fisica
 
CHEM 131 Final Exam
CHEM 131 Final ExamCHEM 131 Final Exam
CHEM 131 Final Exam
 
Catalog Arabesque Galati - 20 octombrie - 30 noiembrie
Catalog Arabesque Galati - 20 octombrie - 30 noiembrieCatalog Arabesque Galati - 20 octombrie - 30 noiembrie
Catalog Arabesque Galati - 20 octombrie - 30 noiembrie
 
Sistema nervioso
Sistema nerviosoSistema nervioso
Sistema nervioso
 
Parss politique commune grh du secteur de sécurité octobre 2016
Parss politique commune grh du secteur de sécurité octobre 2016Parss politique commune grh du secteur de sécurité octobre 2016
Parss politique commune grh du secteur de sécurité octobre 2016
 
142329so
142329so142329so
142329so
 
Dialnet principales aportesdelafisicaa-lafilosofiadelamente-4193700
Dialnet principales aportesdelafisicaa-lafilosofiadelamente-4193700Dialnet principales aportesdelafisicaa-lafilosofiadelamente-4193700
Dialnet principales aportesdelafisicaa-lafilosofiadelamente-4193700
 
Modernismo y 98
Modernismo y 98Modernismo y 98
Modernismo y 98
 
Lamborghini aventador
Lamborghini aventadorLamborghini aventador
Lamborghini aventador
 
Silaboims
SilaboimsSilaboims
Silaboims
 
Week 3
Week 3Week 3
Week 3
 
The Predictive Power of Intraday-Data Volatility Forecasting Models: A Case S...
The Predictive Power of Intraday-Data Volatility Forecasting Models: A Case S...The Predictive Power of Intraday-Data Volatility Forecasting Models: A Case S...
The Predictive Power of Intraday-Data Volatility Forecasting Models: A Case S...
 
Webquest de espanol
Webquest de espanolWebquest de espanol
Webquest de espanol
 

Similar to Js placement

JavaScriptL18 [Autosaved].pptx
JavaScriptL18 [Autosaved].pptxJavaScriptL18 [Autosaved].pptx
JavaScriptL18 [Autosaved].pptx
VivekBaghel30
 
Java script
Java scriptJava script
Java script
Ravinder Kamboj
 
Html.ppt
Html.pptHtml.ppt
Html.ppt
Sunil Thakur
 
Web Day-01.pptx
Web Day-01.pptxWeb Day-01.pptx
Web Day-01.pptx
GDSCIIITDHARWAD
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
Ahsan Rahim
 
JS BASICS JAVA SCRIPT SCRIPTING
JS BASICS JAVA SCRIPT SCRIPTINGJS BASICS JAVA SCRIPT SCRIPTING
JS BASICS JAVA SCRIPT SCRIPTING
Arulkumar
 
Lecture6
Lecture6Lecture6
Lecture6
Sazilah Salam
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
ZahouAmel1
 
Java script tutorial
Java script tutorialJava script tutorial
Java script tutorial
Son Nguyen
 
#1 HTML [know-how]
#1 HTML [know-how]#1 HTML [know-how]
#1 HTML [know-how]
Dalibor Gogic
 
JavaScript - Getting Started.pptx
JavaScript - Getting Started.pptxJavaScript - Getting Started.pptx
JavaScript - Getting Started.pptx
JonnJorellPunto
 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]
Dalibor Gogic
 
HTML Web design english & sinhala mix note
HTML Web design english & sinhala mix noteHTML Web design english & sinhala mix note
HTML Web design english & sinhala mix note
Mahinda Gamage
 
WebDev Simplified Day 1 ppt.ppt
WebDev Simplified Day 1 ppt.pptWebDev Simplified Day 1 ppt.ppt
WebDev Simplified Day 1 ppt.ppt
SarikaPurohit1
 
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCRDrupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Gaurav Mishra
 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
Tadpole Collective
 

Similar to Js placement (20)

JavaScriptL18 [Autosaved].pptx
JavaScriptL18 [Autosaved].pptxJavaScriptL18 [Autosaved].pptx
JavaScriptL18 [Autosaved].pptx
 
Java script
Java scriptJava script
Java script
 
Html.ppt
Html.pptHtml.ppt
Html.ppt
 
Web Day-01.pptx
Web Day-01.pptxWeb Day-01.pptx
Web Day-01.pptx
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
 
JS BASICS JAVA SCRIPT SCRIPTING
JS BASICS JAVA SCRIPT SCRIPTINGJS BASICS JAVA SCRIPT SCRIPTING
JS BASICS JAVA SCRIPT SCRIPTING
 
Lecture6
Lecture6Lecture6
Lecture6
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
 
Java script tutorial
Java script tutorialJava script tutorial
Java script tutorial
 
Web development basics
Web development basicsWeb development basics
Web development basics
 
[In Control 2010] HTML5
[In Control 2010] HTML5[In Control 2010] HTML5
[In Control 2010] HTML5
 
#1 HTML [know-how]
#1 HTML [know-how]#1 HTML [know-how]
#1 HTML [know-how]
 
JavaScript - Getting Started.pptx
JavaScript - Getting Started.pptxJavaScript - Getting Started.pptx
JavaScript - Getting Started.pptx
 
Javascript by geetanjali
Javascript by geetanjaliJavascript by geetanjali
Javascript by geetanjali
 
Hello world
Hello worldHello world
Hello world
 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]
 
HTML Web design english & sinhala mix note
HTML Web design english & sinhala mix noteHTML Web design english & sinhala mix note
HTML Web design english & sinhala mix note
 
WebDev Simplified Day 1 ppt.ppt
WebDev Simplified Day 1 ppt.pptWebDev Simplified Day 1 ppt.ppt
WebDev Simplified Day 1 ppt.ppt
 
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCRDrupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
 

More from Sireesh K

Cn10
Cn10Cn10
Cn10
Sireesh K
 
chanakya neeti
chanakya neetichanakya neeti
chanakya neeti
Sireesh K
 
chanakya neeti
chanakya neetichanakya neeti
chanakya neeti
Sireesh K
 
What is mvc
What is mvcWhat is mvc
What is mvc
Sireesh K
 
31c
31c31c
31cs
31cs31cs
31cs
Sireesh K
 
45c
45c45c
44c
44c44c
43c
43c43c
42c
42c42c
41c
41c41c
40c
40c40c
39c
39c39c
38c
38c38c
37c
37c37c
35c
35c35c
34c
34c34c
33c
33c33c
30c
30c30c
29c
29c29c

More from Sireesh K (20)

Cn10
Cn10Cn10
Cn10
 
chanakya neeti
chanakya neetichanakya neeti
chanakya neeti
 
chanakya neeti
chanakya neetichanakya neeti
chanakya neeti
 
What is mvc
What is mvcWhat is mvc
What is mvc
 
31c
31c31c
31c
 
31cs
31cs31cs
31cs
 
45c
45c45c
45c
 
44c
44c44c
44c
 
43c
43c43c
43c
 
42c
42c42c
42c
 
41c
41c41c
41c
 
40c
40c40c
40c
 
39c
39c39c
39c
 
38c
38c38c
38c
 
37c
37c37c
37c
 
35c
35c35c
35c
 
34c
34c34c
34c
 
33c
33c33c
33c
 
30c
30c30c
30c
 
29c
29c29c
29c
 

Recently uploaded

How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
Celine George
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
Col Mukteshwar Prasad
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
rosedainty
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
Vivekanand Anglo Vedic Academy
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 

Recently uploaded (20)

How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 

Js placement

  • 1. JavaScript - Placement in HTML File Brought to you by www.SiryMedia.in
  • 2. • There is a flexibility given to include JavaScript code anywhere in an HTML document. However the most preferred ways to include JavaScript in an HTML file are as follows − • Script in <head>...</head> section. • Script in <body>...</body> section. • Script in <body>...</body> and <head>...</head> sections. • Script in an external file and then include in <head>...</head> section. • In the following section, we will see how we can place JavaScript in an HTML file in different ways.
  • 3. JavaScript in <head>...</head> section • If you want to have a script run on some event, such as when a user clicks somewhere, then you will place that script in the head as follows − • <html> <head> • <script type="text/javascript"> <!-- function sayHello() { alert("Hello World") } //--> </script> • </head> <body> • <input type="button" onclick="sayHello()" value="Say Hello" /> </body> </html>
  • 4. JavaScript in <body>...</body> section • If you need a script to run as the page loads so that the script generates content in the page, then the script goes in the <body> portion of the document. In this case, you would not have any function defined using JavaScript. Take a look at the following code. • <html> <head> </head> <body> <script type="text/javascript"> <!-- document.write("Hello World") //--> </script> <p>This is web page body </p> </body> </html>This code will produce the following results −
  • 5. JavaScript in <body> and <head> Sections • You can put your JavaScript code in <head> and <body> section altogether as follows − • <html> <head> • <script type="text/javascript"> • <!-- function sayHello() { alert("Hello World") } //--> </script> </head> <body> • <script type="text/javascript"> <!-- document.write("Hello World") //--> </script> <input type="button" onclick="sayHello()" value="Say Hello" /> • </body> </html>
  • 6. JavaScript in External File • As you begin to work more extensively with JavaScript, you will be likely to find that there are cases where you are reusing identical JavaScript code on multiple pages of a site. • You are not restricted to be maintaining identical code in multiple HTML files. The script tag provides a mechanism to allow you to store JavaScript in an external file and then include it into your HTML files. • Here is an example to show how you can include an external JavaScript file in your HTML code using script tag and its src attribute. • <html> <head> • <script type="text/javascript" src="filename.js" ></script> • </head> <body> ....... </body> </html>
  • 7. • To use JavaScript from an external file source, you need to write all your JavaScript source code in a simple text file with the extension ".js" and then include that file as shown above. • For example, you can keep the following content in filename.js file and then you can use sayHello function in your HTML file after including the filename.js file. • function sayHello() { alert("Hello World") }
  • 8. Thank You For more updates subscribe to our YouTube channel SiryMedia To watch more videos visit our website www.sirymedia.in