SlideShare a Scribd company logo
1 of 29
Download to read offline
JavaScript Basic programs
by
Satish Shende
satish.sixteen@gmail.com
Message Box
alert
window.alert("Welcome to my site!")
confirm
window.confirm("Are you sure you want to quit?")
prompt
window.prompt("please enter user name")
<html>
<head>
<title>
</title>
</head>
<body>
<script>
window.alert("Welcome to my site!")
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<<html><head>
<script>
var x=confirm("Are you sure you want to quit?")
if (!x)
window.location="http://www.vdfindia.org/"
</script>
</head>
<body>
Welcome to my website!.
</body></html>
</body>
</html>
Variable
Variables and Conditions
<script>
var x=window.confirm("Are you sure you want
to quit")
if (x)
window.alert("Thank you.")
else
window.alert("Good choice.")
</script>
<html><head>
<script>
var x=confirm("Are you sure you want to quit?")
if (!x)
window.location="http://www.yahoo.com"
</script>
</head>
<body>
Welcome to my website!.
</body></html>
Function
<html><head><title></title></head>
<body>
<script>
function test()
{
document.write("Hello can you see me?")
}
</script>
</body></html>
functions are not executed by themselves until
you call upon them.
<html><head><title></title></head>
<body>
<script>
function test()
{
document.write("Hello can you see me?")
}
test()
</script>
</body></html>
Call function
<!DOCTYPE html>
<html>
<body>
<h1>My First JavaScript</h1>
<p id="demo">JavaScript can change the style of an HTML element.</p>
<script>
function myFunction() {
document.getElementById("demo").style.fontSize = "25px";
document.getElementById("demo").style.color = "red";
document.getElementById("demo").style.backgroundColor = "yellow";
}
</script>
<button type="button" onclick="myFunction()">Click Me!</button>
</body>
</html>
Event handler
What are event handlers?
execute JavaScript when
something happens, such as
• click or move your mouse over
a link,
• submit a form etc.
<html><head><title></title></head>
<body>
<script>
function ss()
{
alert("Thank you! For click")
}
</script>
<form>
<input type="button" value="Click here" onclick="ss()">
</form>
</body></html>
</head><body>
< script Language="JavaScript">
function checkLogin(x)
{
if ((x.id.value != "Sam")||(x.pass.value !="Sam123"))
{
alert("Invalid Login");
return false;
}
else
location="main.htm"
}
</script>
<form>
<p>UserID:<input type="text" name="id"></p>
<p>Password:<input type="password" name="pass"></p>
<p><input type="button" value="Login"
onClick="checkLogin(this.form)"></p>
</form>
</body></html>
<html><head><title>show
date</title></head>
<body>
<script language="javascript">
var x= new date();
document.write (x);
</script>
</body></html>
Date
<html><head><title>show
date</title></head>
<body>
<script language="javascript">
var bantime= new date()
var ss=bantime.gethours()
if (ss<=20)
document.write("<img src='http://www.world-trail.com/wp-
content/uploads/2015/08/world_trail_logo.png'>")
else
document.write("<img
src='https://static01.nyt.com/images/2016/05/03/world/what-in-
the-world/witw-promo/witw-promo-thumblarge.jpg'>")
</script>
</body></html>
Window To open a window, simply use the method
"window.open()":
<html><head><title>new
window</title></head>
<body>
<form>
<input type="button" value="click
here to see"
onclick="window.open('https://w
ww.youtube.com/?gl=in')">
</form>
</body></html>
<html><head><title></title></head>
<body>
<form>
<input type="button" value="Visit LinkedIn"
onClick="aa=window.open('http://www.linkedin.com/','','width=200,height=200')">
<input type="button" value="Visit Google"
onClick="aa=window.open('https://www.google.com/','','width=200,height=200')">
<input type="button" value="Know about Weather"
onClick="aa=window.open('https://www.accuweather.com/en/in/satara/189287/w
eather-forecast/189287','','width=200,height=200')">
<input type="button" value="Visit YouTube"
onClick="aa=window.open('https://www.youtube.com/?gl=IN','','width=200,height=
200')">
</form>
</body></html>
<html><head><title>new
window</title></head>
<body>
<form>
<input type="button" value="click here to see"
onclick="window.open('page2.htm','win1','widt
h=200,height=200,menubar')">
</form>
</body></html>
script to control the size of the window
JavaScript with HTML + CSS
Show Date
(using HTML + Javascript)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Show date</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"> </script>
</head>
<body onload = "showDate()">
<button onmouseout = "clearDate()" onmouseover="showDate()">Show
Date
</button>
<h1 id="time"></h1>
</html>
HTML
function showDate(){
var time = document.getElementById("time");
time.innerHTML = Date();
}
function clearDate(){
var time = document.getElementById("time");
time.innerHTML = '';
}
Javascript
Increase font size
(using HTML + Javascript)
<div class="text_area" id="demo_4">
<p>Happy Birthday</p>
<button onclick=myfunctionThree();>Press
here</button>
</div>
function myfunctionThree()
{
document.getElementById
("demo_4").style.fontSize
= "30px";
}
HTML
JavaScript
Display an image
(using HTML + CSS + Javascript)
<link rel="stylesheet" href="style.css">
<button onclick=myfunctionFive();>Now
Click</button>
<a id="demo_6">
<img class="one"
src="https://images.pexels.com/photos/4
59225/pexels-photo-
459225.jpeg?auto=compress&cs=tinysrgb
&h=350">
</a>
HTML
#demo_6{
display:none;
}
.one {
border: 1px solid blue;
padding: 15px;
margin: 5px }
css
function myfunctionFive()
{
document.getElementById
("demo_6").style.display = "block";
}
javascript
img {
border-radius: 8px;
}
css
img {
border-radius: 50%;
}
img:hover {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}

More Related Content

What's hot

Assignment4
Assignment4Assignment4
Assignment4H K
 
Casl. isomorphic permission management.pptx
Casl. isomorphic permission management.pptxCasl. isomorphic permission management.pptx
Casl. isomorphic permission management.pptxSergiy Stotskiy
 
Our application got popular and now it breaks
Our application got popular and now it breaksOur application got popular and now it breaks
Our application got popular and now it breaksColdFusionConference
 
Client-side Transformations
Client-side TransformationsClient-side Transformations
Client-side TransformationsJohn Boxall
 
The Future of CSS with Web Components
The Future of CSS with Web ComponentsThe Future of CSS with Web Components
The Future of CSS with Web ComponentsColdFusionConference
 
Html server control - ASP. NET with c#
Html server control - ASP. NET with c#Html server control - ASP. NET with c#
Html server control - ASP. NET with c#priya Nithya
 
jQuery Presentation to Rails Developers
jQuery Presentation to Rails DevelopersjQuery Presentation to Rails Developers
jQuery Presentation to Rails DevelopersYehuda Katz
 
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStartBest Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStartScott DeLoach
 
Desenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery MobileDesenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery MobilePablo Garrido
 

What's hot (20)

Assignment4
Assignment4Assignment4
Assignment4
 
Casl. isomorphic permission management.pptx
Casl. isomorphic permission management.pptxCasl. isomorphic permission management.pptx
Casl. isomorphic permission management.pptx
 
Convidar para page !!
Convidar para page !!Convidar para page !!
Convidar para page !!
 
Our application got popular and now it breaks
Our application got popular and now it breaksOur application got popular and now it breaks
Our application got popular and now it breaks
 
Client-side Transformations
Client-side TransformationsClient-side Transformations
Client-side Transformations
 
The Thinking behind BEM
The Thinking behind BEMThe Thinking behind BEM
The Thinking behind BEM
 
22 j query1
22 j query122 j query1
22 j query1
 
JavaScript
JavaScriptJavaScript
JavaScript
 
The Future of CSS with Web Components
The Future of CSS with Web ComponentsThe Future of CSS with Web Components
The Future of CSS with Web Components
 
Font size
Font sizeFont size
Font size
 
J query
J queryJ query
J query
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
 
Merb jQuery
Merb jQueryMerb jQuery
Merb jQuery
 
Html server control - ASP. NET with c#
Html server control - ASP. NET with c#Html server control - ASP. NET with c#
Html server control - ASP. NET with c#
 
jQuery Presentation to Rails Developers
jQuery Presentation to Rails DevelopersjQuery Presentation to Rails Developers
jQuery Presentation to Rails Developers
 
Index
IndexIndex
Index
 
Java script
Java scriptJava script
Java script
 
Fcr 2
Fcr 2Fcr 2
Fcr 2
 
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStartBest Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
 
Desenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery MobileDesenvolvimento web com jQuery Mobile
Desenvolvimento web com jQuery Mobile
 

Similar to Javascript basic programs

Java script page redirection
Java script   page redirectionJava script   page redirection
Java script page redirectionAbhishekMondal42
 
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...Ayes Chinmay
 
JavaServer Pages
JavaServer Pages JavaServer Pages
JavaServer Pages profbnk
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and ImprovedTimothy Fisher
 
Jquery for post a form
Jquery for post a formJquery for post a form
Jquery for post a formRakesh Kumar
 
Training in Asp.net mvc3 platform-apextgi,noidaAspnetmvc3 j query
Training in Asp.net mvc3 platform-apextgi,noidaAspnetmvc3 j queryTraining in Asp.net mvc3 platform-apextgi,noidaAspnetmvc3 j query
Training in Asp.net mvc3 platform-apextgi,noidaAspnetmvc3 j queryprav068
 
HTML5 - The 2012 of the Web
HTML5 - The 2012 of the WebHTML5 - The 2012 of the Web
HTML5 - The 2012 of the WebRobert Nyman
 
Training in Asp.net mvc3 platform-apextgi,noida
Training in Asp.net mvc3 platform-apextgi,noidaTraining in Asp.net mvc3 platform-apextgi,noida
Training in Asp.net mvc3 platform-apextgi,noidaprav068
 
計算機概論20161212
計算機概論20161212計算機概論20161212
計算機概論20161212志宇 許
 
Java script form validation
Java script  form validationJava script  form validation
Java script form validationAbhishekMondal42
 
20190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React201920190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React2019Makoto Mori
 
Java script errors &amp; exceptions handling
Java script  errors &amp; exceptions handlingJava script  errors &amp; exceptions handling
Java script errors &amp; exceptions handlingAbhishekMondal42
 

Similar to Javascript basic programs (20)

Java script page redirection
Java script   page redirectionJava script   page redirection
Java script page redirection
 
Java script programms
Java script programmsJava script programms
Java script programms
 
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
 
JavaServer Pages
JavaServer Pages JavaServer Pages
JavaServer Pages
 
Java script events
Java script  eventsJava script  events
Java script events
 
1cst
1cst1cst
1cst
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and Improved
 
smoke1272528461
smoke1272528461smoke1272528461
smoke1272528461
 
HTML5
HTML5HTML5
HTML5
 
JavaScript Operators
JavaScript OperatorsJavaScript Operators
JavaScript Operators
 
course js day 3
course js day 3course js day 3
course js day 3
 
Jquery for post a form
Jquery for post a formJquery for post a form
Jquery for post a form
 
Training in Asp.net mvc3 platform-apextgi,noidaAspnetmvc3 j query
Training in Asp.net mvc3 platform-apextgi,noidaAspnetmvc3 j queryTraining in Asp.net mvc3 platform-apextgi,noidaAspnetmvc3 j query
Training in Asp.net mvc3 platform-apextgi,noidaAspnetmvc3 j query
 
HTML5 - The 2012 of the Web
HTML5 - The 2012 of the WebHTML5 - The 2012 of the Web
HTML5 - The 2012 of the Web
 
Training in Asp.net mvc3 platform-apextgi,noida
Training in Asp.net mvc3 platform-apextgi,noidaTraining in Asp.net mvc3 platform-apextgi,noida
Training in Asp.net mvc3 platform-apextgi,noida
 
計算機概論20161212
計算機概論20161212計算機概論20161212
計算機概論20161212
 
Java script form validation
Java script  form validationJava script  form validation
Java script form validation
 
Ip lab
Ip labIp lab
Ip lab
 
20190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React201920190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React2019
 
Java script errors &amp; exceptions handling
Java script  errors &amp; exceptions handlingJava script  errors &amp; exceptions handling
Java script errors &amp; exceptions handling
 

More from Digital Shende

Mastering Digital Marketing: Unlocking Success with The POEM Frameworks
Mastering Digital Marketing: Unlocking Success with The POEM FrameworksMastering Digital Marketing: Unlocking Success with The POEM Frameworks
Mastering Digital Marketing: Unlocking Success with The POEM FrameworksDigital Shende
 
Digital Marketing for Women's Self-Help group
Digital Marketing for Women's Self-Help group Digital Marketing for Women's Self-Help group
Digital Marketing for Women's Self-Help group Digital Shende
 
How to Set Up a Google Ads Account Without a Campaign.pptx
How to Set Up a Google Ads Account Without a Campaign.pptxHow to Set Up a Google Ads Account Without a Campaign.pptx
How to Set Up a Google Ads Account Without a Campaign.pptxDigital Shende
 
Introduction to google certified educator level 1
Introduction to google certified educator level 1Introduction to google certified educator level 1
Introduction to google certified educator level 1Digital Shende
 
Build your own google site explation in marathi
Build your own google site explation in marathi Build your own google site explation in marathi
Build your own google site explation in marathi Digital Shende
 
Digital marketing overview 2021
Digital marketing overview 2021Digital marketing overview 2021
Digital marketing overview 2021Digital Shende
 
Digital Shende (Satish Shende) Visual Profile
Digital Shende (Satish Shende) Visual ProfileDigital Shende (Satish Shende) Visual Profile
Digital Shende (Satish Shende) Visual ProfileDigital Shende
 
Satish Shende, Satara Profile
Satish Shende, Satara ProfileSatish Shende, Satara Profile
Satish Shende, Satara ProfileDigital Shende
 
Highlights from the 7th Google for India event
Highlights from the 7th Google for India eventHighlights from the 7th Google for India event
Highlights from the 7th Google for India eventDigital Shende
 
Elements – App Screenshots
Elements – App ScreenshotsElements – App Screenshots
Elements – App ScreenshotsDigital Shende
 
Aarogya setu application
Aarogya setu applicationAarogya setu application
Aarogya setu applicationDigital Shende
 
Corona kavach app Beta Version Screenshots
Corona kavach app Beta Version ScreenshotsCorona kavach app Beta Version Screenshots
Corona kavach app Beta Version ScreenshotsDigital Shende
 
Content Creation Tools
Content Creation ToolsContent Creation Tools
Content Creation ToolsDigital Shende
 
Entrepreneurial Opportunities in Digital Marketing
Entrepreneurial Opportunities in Digital MarketingEntrepreneurial Opportunities in Digital Marketing
Entrepreneurial Opportunities in Digital MarketingDigital Shende
 
Vertical scrolling Screen mit app inventor
Vertical scrolling Screen mit app inventorVertical scrolling Screen mit app inventor
Vertical scrolling Screen mit app inventorDigital Shende
 
Tennis game with score mit app inventor code with design
Tennis game  with score mit app inventor code with designTennis game  with score mit app inventor code with design
Tennis game with score mit app inventor code with designDigital Shende
 
Rocket space game mit app inventor code with design
Rocket space game mit app inventor code with designRocket space game mit app inventor code with design
Rocket space game mit app inventor code with designDigital Shende
 
Germs kill mit app inventor game code with design
Germs kill mit app inventor game code with designGerms kill mit app inventor game code with design
Germs kill mit app inventor game code with designDigital Shende
 
Spinner Game MIT app inventor
Spinner Game MIT app inventorSpinner Game MIT app inventor
Spinner Game MIT app inventorDigital Shende
 
Mars mission 2020 registration
Mars mission 2020 registrationMars mission 2020 registration
Mars mission 2020 registrationDigital Shende
 

More from Digital Shende (20)

Mastering Digital Marketing: Unlocking Success with The POEM Frameworks
Mastering Digital Marketing: Unlocking Success with The POEM FrameworksMastering Digital Marketing: Unlocking Success with The POEM Frameworks
Mastering Digital Marketing: Unlocking Success with The POEM Frameworks
 
Digital Marketing for Women's Self-Help group
Digital Marketing for Women's Self-Help group Digital Marketing for Women's Self-Help group
Digital Marketing for Women's Self-Help group
 
How to Set Up a Google Ads Account Without a Campaign.pptx
How to Set Up a Google Ads Account Without a Campaign.pptxHow to Set Up a Google Ads Account Without a Campaign.pptx
How to Set Up a Google Ads Account Without a Campaign.pptx
 
Introduction to google certified educator level 1
Introduction to google certified educator level 1Introduction to google certified educator level 1
Introduction to google certified educator level 1
 
Build your own google site explation in marathi
Build your own google site explation in marathi Build your own google site explation in marathi
Build your own google site explation in marathi
 
Digital marketing overview 2021
Digital marketing overview 2021Digital marketing overview 2021
Digital marketing overview 2021
 
Digital Shende (Satish Shende) Visual Profile
Digital Shende (Satish Shende) Visual ProfileDigital Shende (Satish Shende) Visual Profile
Digital Shende (Satish Shende) Visual Profile
 
Satish Shende, Satara Profile
Satish Shende, Satara ProfileSatish Shende, Satara Profile
Satish Shende, Satara Profile
 
Highlights from the 7th Google for India event
Highlights from the 7th Google for India eventHighlights from the 7th Google for India event
Highlights from the 7th Google for India event
 
Elements – App Screenshots
Elements – App ScreenshotsElements – App Screenshots
Elements – App Screenshots
 
Aarogya setu application
Aarogya setu applicationAarogya setu application
Aarogya setu application
 
Corona kavach app Beta Version Screenshots
Corona kavach app Beta Version ScreenshotsCorona kavach app Beta Version Screenshots
Corona kavach app Beta Version Screenshots
 
Content Creation Tools
Content Creation ToolsContent Creation Tools
Content Creation Tools
 
Entrepreneurial Opportunities in Digital Marketing
Entrepreneurial Opportunities in Digital MarketingEntrepreneurial Opportunities in Digital Marketing
Entrepreneurial Opportunities in Digital Marketing
 
Vertical scrolling Screen mit app inventor
Vertical scrolling Screen mit app inventorVertical scrolling Screen mit app inventor
Vertical scrolling Screen mit app inventor
 
Tennis game with score mit app inventor code with design
Tennis game  with score mit app inventor code with designTennis game  with score mit app inventor code with design
Tennis game with score mit app inventor code with design
 
Rocket space game mit app inventor code with design
Rocket space game mit app inventor code with designRocket space game mit app inventor code with design
Rocket space game mit app inventor code with design
 
Germs kill mit app inventor game code with design
Germs kill mit app inventor game code with designGerms kill mit app inventor game code with design
Germs kill mit app inventor game code with design
 
Spinner Game MIT app inventor
Spinner Game MIT app inventorSpinner Game MIT app inventor
Spinner Game MIT app inventor
 
Mars mission 2020 registration
Mars mission 2020 registrationMars mission 2020 registration
Mars mission 2020 registration
 

Recently uploaded

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 

Recently uploaded (20)

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 

Javascript basic programs