Categories
Javascript

JavaScript Browsers Handling

In this tutorial, you can get knowledge of JavaScript Browsers Handling or Compatibility and how to handle JavaScript in different browsers. Before applying JavaScript, we need to know the differences between different browsers and how they can be handled in different way. You can use built-in navigator object to get the information about the browser […]

Categories
jQuery

Differences Between jQuery .bind() vs .live() vs .delegate() vs .on()

In this article you will learn the difference between bind vs live vs delegate vs on methods for adding event handlers to elements. Developers are little bit confused about what the actual differences are between the jQuery .bind(), .live(), .delegate(), and .on() methods and how they should be used. Let’s start with some common HTML […]

Categories
Javascript

Enabling JavaScript in Browsers

Most of the modern browsers come with built-in JavaScript support and Enabling JavaScript makes you fully support in it. This tutorial contains the procedure of enabling and disabling JavaScript for supporting in your current browsers i.e. Internet Explorer, Firefox, Opera, chrome etc. Enable JavaScript in Firefox Follow this steps to enable/disable JavaScript in Firefox: Open […]

Categories
jQuery

10 best jQuery Notification plugin

jQuery Notification plugin helps you to create various notification messages such as success, error, alert and simple notification. This notifications messages are very helpful to get the actual feedback from any visitors about the status success or failure of task that is being carried out. For this roundup we have chosen 10 Best jQuery Notification […]

Categories
Javascript

JavaScript Strict mode

JavaScript Strict mode is a way to opt into a restricted variant which is an literal expression i.e. ignored by earlier versions of JavaScript. This is not just a subset but intentionally it has several semantics from normal code. Both strict mode and non-strict mode code can coexist, so incrementally, scripts can opt into strict […]

Categories
Javascript

Deal with JavaScript and Cookies

JavaScript cookie is the most efficient method of tracking and remembering preferences, lets you store user information in small text files on computer. By definition, a cookie is a nothing but a piece of data that is sent from a website and stored locally by the user’s browser. Basically, web browsers and servers use HTTP […]

Categories
Javascript

Print a web page content using JavaScript

Are you aware of printing the content of a web page via an actual printer using JavaScript? Don’t get confuse! JavaScript can help you to implement print functionality using a print function of window object. This works on all modern browsers, so this can be a valid substitute inside a browser where toolbar is disabled. […]

Categories
Javascript

HTML noscript Tag

For a browser which doesn’t support script or disabled scripts in their browser, the ‘noscript’ tag defines an alternate content for the users. If scripts are not supported or disabled in the user’s browser, then, the content inside the ‘noscript’ tag will be displayed. This can be placed in both <head> and <body>. For inside […]

Categories
Javascript

Advantages and disadvantages of JavaScript

JavaScript client side scripting provides many advantages over server side scripts. For example, using JavaScript, you can check if any user has entered a correct email address in a form field. JavaScript is one of the most simple, lightweight, versatile and interpreted programming language used to extend functionality in websites. It also possesses some negative […]

Categories
jQuery

jQuery data attributes

jQuery data attributes allows us to store extra information or return the value at the named data which will be associated with a particular element. Syntax of data attributes: This is very simple. On any elements the attribute name starts with a data-* where you can store extra information which does not represent visually. <div […]