Writing Better jQuery Code JavaScript / General Development
We all know that jQuery is great, that you can do things in 2-3 lines in jQuery that you can in 20 lines of Javascript, but is your jQuery code starting to get a bit bulky? Could you do things better?
Getting Browser details and Version Detection using JavaScript JavaScript / General Development
We work hard to get more traffic to make our web portal or blog popular. We use various tips and techniques to achieve our goals. We go for search engine optimization, forum and discussion boards. We put our back link there. People use it and from different parts of the world people comes to our web portal or blog.
Counting and Looping JavaScript / General Development
Some of the assignments the browser will need to perform on your code consist of executing a portion of code over and over again until an intermediate condition occurs. This repetitive execution of code is referred to as looping. To perform such a loop, your code will need to specify a condition to test, what to do depending on the test for example how to loop, and when to stop.
Conditional Statements JavaScript / General Development
A script is usually executed in a top-down approach. Instead of letting the browser proceed as you wish, you can set a condition that would control the sequence of processing. If the condition you set if true, then you can perform a desired operation. This processing is performed using the if condition.
Conditional Operators JavaScript / General Development
Conditional statements allow you to control the flow of execution of a script or one of its sections. To do this, you use some keywords and associate them with expressions to check. Depending on the outcome of the checking process and other comparison operations, you can take appropriate actions. Most of the conditional statements perform comparisons and act depending on the outcome of such comparisons. To assist you in making such comparisons, the JavaScript language is equipped with special operators that can act on natural numbers, decimal numbers, or strings.
Datasheet control JavaScript / General Development
This worked example creates a compact form with multiple similar records, with the familiar appearance of a datasheet. Features: Familiar datasheet-style input grid, ability to update multiple changed records, shows which fields have been edited
Tabular List control JavaScript / General Development
This worked example applies styling and functionality to a basic grid of data to produce a simple form control that's a pleasure to use. Features:
Subtle 3D styling, Row selectors & select-all function, Sortable columns.