Top Banner
PRESENTED BY MUHAMMAD USMAN
17

BEAAUTIFUL presentation of java

Jan 14, 2017

Download

Education

Rana Usman
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: BEAAUTIFUL  presentation of java

PRESENTED

BYMUHA

MMAD

USMAN

Page 2: BEAAUTIFUL  presentation of java
Page 3: BEAAUTIFUL  presentation of java

JavaScript is most commonly used as a client side scripting language. This means that JavaScript code is written into an HTML page.

Page 4: BEAAUTIFUL  presentation of java

MY AIM IS TO DISCUSS THE FUNDAMENTAL ASPECTS OF JAVA SCRIPT

Page 5: BEAAUTIFUL  presentation of java

WHAT

PRO AND CONSHOW TO USEIMPLEMENT

EXAMPLE

SEQUENCE

Page 6: BEAAUTIFUL  presentation of java

What is Java Script Dynamic Programming Language.

Client-side scripts to interact with the user

Control the browser. Also used in used in server-side

programming.

Page 7: BEAAUTIFUL  presentation of java
Page 8: BEAAUTIFUL  presentation of java

Pro and Cons of JS Javascript is executed on the

client side Javascript is a relatively easy

language Extended functionality to web

pages

Page 9: BEAAUTIFUL  presentation of java

Security Issues Javascript rendering varies

Page 10: BEAAUTIFUL  presentation of java

How to Use in HTML Knowledge of HTML Text Editor Web Browser

Page 11: BEAAUTIFUL  presentation of java

JavaScripts in HTML must be inserted between <script> and </script> tags.

JavaScripts can be put in the <body> and in the <head> section of an HTML page.

Page 12: BEAAUTIFUL  presentation of java

Internal Java Script

External Java Script

Page 13: BEAAUTIFUL  presentation of java

<html><head>

<script> //Type JS Script Here

</script></head><body>…</body><html>

Page 14: BEAAUTIFUL  presentation of java

<script lang="text/javascript" src=“URL of .JS File">

</script>

Page 15: BEAAUTIFUL  presentation of java

Write First

Program<html><head>

<title>Hello World in JS</title><script language="javaScript">

document.write("Hello World");</script>

</head>

<body></body></html>

Page 16: BEAAUTIFUL  presentation of java

Have Any Question?

facebook.com/ranamuhammadusmanshani

[email protected]

Page 17: BEAAUTIFUL  presentation of java

Thank You