Quantcast
Channel: Easy Tutorials » Javascript
Browsing latest articles
Browse All 4 View Live

Converting RSS to Javascript

Well now there are online services to help you convert RSS feeds to Javascript. Just go here http://www.rss-to-javascript.com/ Select RSS/RDF CONVERTER Enter the details click on preview to preview the...

View Article


Javascript comments

Comments are very useful things in writing scripts which are useful for others to edit Syntax:  <html> <body> script type=”text/javascript”> // Single line comment  /* Multiline...

View Article


Javascript round off

Sometimes you need to round off numbers this can be easily done through javascript Using Math.round() funtion Syntax: <html> <body> <script type=”text/javascript”>...

View Article

Redirecting the user through javascript

Some times we need to redirect the user for this we can use javascript Syntax: <script type="text/javascript"> <!-- window.location = "http://www.google.com/" //--> </script> You can...

View Article
Browsing latest articles
Browse All 4 View Live