 |
Simple AJAX with JQuery
By the end of this article, you will hopefully understand how to add data, submitted via a form, into a MySQL database without reloading the entire page (the asynchronous part) and show a message saying so.
More Info - Visit
|
 |
Flex and Javascript - Simple Interaction
This tutorial will show you how to call Javascript functions from Flex and Flex functions from Javascript.
More Info - Visit
|
 |
JavaScript Status clock - Advance
We are going to manipulate data which we get from Date object constructor. Using the date object and some of its methods, you can create your own JavaScript clock customized to our needs. First of all we define variable var currentDate=new Date() and create a date object. An advantage of using objects is that objects can hold multiple values, where variables can only keep one value at a time. And then using above method get the required parameter stored in variable.
More Info - Visit
|
 |
JavaScript Status Bar Left to right Text scroll
In this article we are going to design a JavaScript Left to right text scroll at windows Status Bar. Now we define a function MsgFLY() and going to call it through Window object supports methods setTimeout() to call same function after every 1000 milliseconds. The Window object supports methods for setting timers that we might use to perform a variety of functions.
More Info - Visit
|
 |
AJAX file upload tutorial
In this tutorial I will show you how to create simple AJAX file upload system using PHP and JavaScript.
More Info - Visit
|
 |
How to Randomly Rotate AdSense Ads with Javascript
Want to randomize and rotate your AdSense ads? Maybe you want to test a new ad format against an old one?
You can do that with this simple bit of Javascript. It's easier than you think.
More Info - Visit
|
 |
Advanced Javascript (1 of 3)
Douglas looks closely at code patterns from which JavaScript programmers can choose in authoring their applications. He compares familiar constructs like the Pseudoclassical Pattern with more unique patterns like the Parasitic Pattern that (he argues) run more “with the grain” of JavaScript
More Info - Visit
|
 |
How to do String Replacement in Javascript
String replacement is simple enough in PHP - use the str_replace function. Is there an equivalent function we can use in Javascript?
More Info - Visit
|
 |
How to Create a Useful Random Number in Javascript
Javascript's built in randomizer returns a probability - a random value between 0 and 1. You need to do a little extra work to get a random number that's use-able for picking a random item from a list or working into a game design. This tutorial will show you the standard formula for creating a useful random number from that original randm value.
More Info - Visit
|
 |
Opening PDFs in a New Window with JavaScript
Opening documents such as PDFs in a new window should be automated using JavaScript for the following reasons. Users will often close the web browser when a PDF is opened, mistakenly believing the document has been opened in Adobe Reader, the attribute historically used to open a new window, target, has been removed from the HTML 4.01 Strict specification (it's now deprecated), opening a new window is a behaviour and should be moved to the behavioural layer.
More Info - Visit
|