Learn jQuery Part1: Introduction to jQuery Objective In this part we will see different ways we can select element or node in jQuery. Before you start with this part, I strongly recommend you to read first part of this series. In jQuery an element or node can be selected in many ways. An element can … Continue reading
This is first part of Learn jQuery series. In this post we will see, What is jQuery How to start using jQuery Understanding document.ready function What is jQuery? jQuery is a succinct and concise way to write JavaScript. It is a single JavaScript file and it is having cross browser support. In simple terms we … Continue reading
Kendo UI is HTML 5 and Jquery based framework and it helps you to create modern Web Applications. Kendo UI helps you In Data Binding In Animations With UI widgets like Grid and Chart With Drag and Drop API In Touch support. Download kendo UI from here Once you download you get below folders Navigate … Continue reading
Before you go ahead and use any of the features of HTML5, it is recommended to verify that whether that particular feature is supported by target browser or not. You can verify supported feature using open source java script file ModernIZR ModernIZR is open source java script file allows you to detect whether particular feature … Continue reading
HTML 5 is the new version came after HTML4.01. HTML4.01 was released in 1999 and since then Web has been changed to very large extent. To embrace changes of new web, HTML 5 came as new standard. HTML5 is joint venture of W3C and WHATWG to standardize the web and that would be supported by … Continue reading
In this post, we will see the way to create Style Rules in HTML 5. Style is a rule we apply to tags These rules {style} can be applied to individual instance of tags. These rules {style} can be applied to all instances of a particular tag within a document. These rules {style} can be … Continue reading
Audience: Beginners This article is targeted to beginners in Jquery. In this article, we will see 1. Creating Drop Down dynamically 2. Adding options to Drop down dynamically. So, on $(document).ready(function() {}; , we will create drop down and add options to that at runtime. We are going to add two drop downs MyPage.htm Explanation … Continue reading
Objective In this article we will see, 1. How to apply Jquery on HTML table? 2. How to check and uncheck all the checkboxes? 3. How to check how many numbers of checkboxes are checked? 4. How to disable and enable the checkboxes. Suppose we have a HTML table as below. And HTML for above … Continue reading