Opening Windows and Popups with JavaScript
One of the more common uses of the Window object is to open new windows or pop-ups. While these pop-up windows are quite annoying to users when you use them …
One of the more common uses of the Window object is to open new windows or pop-ups. While these pop-up windows are quite annoying to users when you use them …
In this article, we will cover the most basic methods used in jQuery when dealing with Ajax related methods. Ajax Methods The methods listed in the following table are common …
While most of the JavaScript code that you use is supported across modern browsers, some of your JavaScript code will not work for some browsers, especially the older versions. We …
In JavaScript, an array object can be used to store more than one value in a single variable. Creating an array is slightly different from creating a normal variable. There …
Slideshows are quite common on sites that have lots of images that need to be displayed for your visitors. Using just plain JavaScript, you can build a very simple slideshow …
In this tutorial, we are going to look at a technique to vertically and horizontally center content where the width and height are unknown. There are a few techniques that …
JQuery Ajax provides a variety of methods that can be executed when certain events occur. These methods register handlers that are called when certain events, such as initialization or completion, …
The jQuery animate method can be used to create a custom animation of your HTML elements simply with the use of CSS properties. This animate method modifies an element’s style …
There are other JavaScript libraries that use $ as a function or variable name, just as jQuery does. With regard to jQuery, the $ is just an alias for jQuery. …
Just as you would style text on your web pages, styling documents is also a common practice. Links can be styled with CSS properties such as color, font-family, background, and …
You may have noticed that on some web pages, as you scroll up and down the page, various menus may appear either at the top, bottom, or sides of the …
Slideshows are quite common on sites that have pictures and other images that need to be displayed to your visitors. Using jQuery, you can build a very simple slideshow using …