↧
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 ArticleJavascript 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 ArticleJavascript 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 ArticleRedirecting 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