Top Reasons To Use Grunt - A Leading JavaScript Task Runner

Top Reasons To Use Grunt - A Leading JavaScript Task Runner
Though web development has evolved into one of the most promising fields of career, the majority of mundane work associated with the same has often refrained students from choosing the same. Fortunately, we can rely on a good task runner which can...

Convert Strings to Upper Case in JavaScript

Convert Strings to Upper Case in JavaScript
This will teach you the way to convert strings to upper case in javascript. we will use these if we've a text field needs to capitalized all inputted text or simply the 1st letter of the word. Source : <!DOCTYPE html> <html> <head> <script...

How to Validate Email in JavaScript with Regular Expression

How to Validate Email in JavaScript with Regular Expression
We have seen many Regular Expression tutorials in VB.NET and C-sharp, this is our first JavaScript tutorial on Regular Expressions. So today we’ll see how to validate an email address that's being entered to a textbox. We have a textbox and a button,...

Snippet : Javascript onmouseover and onmouseout

Snippet : Javascript onmouseover and onmouseout
This snippet helps you to make buttons etc.. I have been using this for Download Button...

Widget to share photos,text & page

Widget to share photos,text & page
The best way to get traffic for your blog is from search engines and social media. Today I found a social media sharing service very impressive and attractive. Let me introduce to the service, there's a website called markely.com that promotes your...

How To Add A Top Bar To Blogger

How To Add A Top Bar To Blogger
We are going to use a service a popular one it's called AddThis . AddThis provide many services such as sharing widgets and recommended posts widget etc and we are going to use Welcome Bar . Go to addthis.com and create a new account or if you...

How To Put HTML,CSS,JAVASCRIPT Codes In Your Blogger Articles

How To Put HTML,CSS,JAVASCRIPT Codes In Your Blogger Articles
Yes this is my second blogger tutorial , actually this is something i had to do to solve a problem . i use alexgorbatchev.com/SyntaxHighlighter but it seems that if i use anything similar to class in any language then some span tags cover them...

How To Make A Simple Digital Clock Using Javascript

How To Make A Simple Digital Clock Using Javascript
i remember i have written a tutorial on making a clock using javascript before but i know that it was not explained and that codes were not clean so i thought make it again with nice codes . first we need to create a html document to make a the javascript...

How To Count Number Of Characters Using html and Javascript

How To Count Number Of Characters Using html and Javascript
hello guys , i have had an idea to make something what the title says so on i am here with a small tutorial on making what the title says . we will be using html and javascript by the waythe whole code is just 20 lines including html tags ok now...

How To Display Time In Javascript

How To Display Time In Javascript
ok this is a simple clock i mean its a digital one but its real time , the javascript is down here...

How To Display Date In Javascript

How To Display Date In Javascript
i am making this as very small because i have many things to post oj here is the code <script type="text/javascript"> var currentTime = new Date() var month = currentTime.getMonth() + 1 var day = currentTime.getDate() var year...

How To Make A Simple Stopwatch In Javascript

How To Make A Simple Stopwatch In Javascript
this is the look of the stopwatch the script add it below head <script language="javascript"> var base = 60; var clocktimer,dateObj,dh,dm,ds,ms; var readout=''; var h=1; var m=1; var tm=1; var s=0; var ts=0; var ms=0; var show=true; var init=0; var...

Javascript Popup Message Box

Javascript Popup Message Box
this is something very simple and it seems like this just add this somewhere else in you htm...