Improve your skills

September 27, 2016

How to Add or Remove HTML Element Dynamically in Javascript or JQuery

In this article, we will discuss about how to add or remove any html element dynamically in javascript or jquery. We can easily add or remove any HTML elements like textbox, button, radio button etc. using JavaScript. JavaScript’s document object has a method called createElement() which can be used to create HTML elements dynamically. First, we...

September 14, 2016

Add Simple Auto Complete Search to Input Box like Google using JQuery UI

In this tutorial, we learn how to implement auto-complete search textbox like google using jQuery UI. We can easily display a list of suggestions from the beginning of the word typed in a text box. Auto-complete prevents the user from having to enter an entire word or a set...

September 08, 2016

How to Disable Resizeable Property of Textarea

Normally whenever we use textarea in pages, the browser allows the user to resize it, but sometimes this is not required (as it affect the other part of the design). So, In this article I will explain how to disable or prevent users from resizing the textarea element in browsers like Google Chrome, Mozilla Firefox and Apple Safari. Note: By...

September 03, 2016

How to Check weather a checkbox is checked or not using JavaScript or jQuery

Here I will explained with an example and live demo, How to check whether a CheckBox is checked (selected) or unchecked (not selected) using JavaScript or jQuery. Description: The checked property indicates whether a checkbox is checked or not. If a checkbox is selected,...

Subscribe for Latest Update

Popular Posts