CSS Lec-40 Protecting Web Page - bfdd3b3
CSS Lec-40 Protecting Web Page - bfdd3b3
CSS Lec-40 Protecting Web Page - bfdd3b3
CSS Lecture-40
Topic: Protecting Web Page
Course: Java Script, Info Planet Programming Classes Prepared By: Atul Kabra, 9422279260
Course: Client Side Scripting, Prepared By: Atul Kabra, 9422279260
e.preventDefault();
});
}
</script>
</head>
<body>
<h1> Info Planet</h1>
</body>
</html>
Other method is, You can store your Javascript code on your web server
instead of builing it into your web page. The browser calls the Javascript
code from the web server when it is needed by your web page. Using
this method, the Javascript code is not visible to the visitor, even if the
visitor views the source code for the web page.
Course: Java Script, Info Planet Programming Classes Prepared By: Atul Kabra, 9422279260
Course: Client Side Scripting, Prepared By: Atul Kabra, 9422279260
(concealemail.html)
<html>
<head>
<script>
function makelink(){
var str='mailto:';
str = str+String.fromCharCode(97,98,99,64,103,109,97,105,10
8,46,99,111,109); //[email protected]
window.location.href=str;
}
</script>
</head>
<body>
<input type="button" value="Send" onclick="makelink()">
</body>
</html>
Following are the most frequent and popular used framework used by
programmer to code the application as device responsive.
1) Angular JS :
a. AngularJS is one of the most powerful , efficient and open source
Javascript framework.
Course: Java Script, Info Planet Programming Classes Prepared By: Atul Kabra, 9422279260
Course: Client Side Scripting, Prepared By: Atul Kabra, 9422279260
2) ReactJS :
a. React framework that was originally created, and is maintained by
Facebook.
b. It is used to develop and operate the dynamic user interface of the
web page with high incoming traffic.
c. It can be used on client and server side.
3) NodeJS :
a. It is a server side Javascript run time environment, which works on
cross platform and is open-source.
b. It works in the Javascript Runtime environment and hence shows
similar properties of Java like threading, packages, forming of loops
c. It is very fast.
End Of Syllabus
Course: Java Script, Info Planet Programming Classes Prepared By: Atul Kabra, 9422279260