Archive for July, 2013

jQuery: Select all readonly input type textbox

In this short post, find jQuery code to select all readonly input type textboxes present on the page. $(function(){ $(":input[type=text][readonly='readonly']").val(""); }); However, if you have single readonly textbox element, then select it using its ID. And if you want to exclude all readonly input type textboxes from selection, then use below jQuery code. $(function(){ $(":input[type=text]:not([readonly='readonly'])").val(""); […]
Read the rest of this entry »

Download jQuery Interview Questions free eBook

Free eBook to download jQuery interview question and answers in PDF format. These are the question which You'll Most Likely Be Asked in an interview. This is a same list which few days ago, I had posted about Latest jQuery interview questions and answers and the response was quite good. So now you can also […]
Read the rest of this entry »

Latest jQuery interview questions and answers

Below is the list of latest and updated jQuery interview questions and their answers for freshers as well as experienced users. These interview question covers latest version of jQuery which is jQuery 2.0. These interview questions will help you to prepare for the interviews, quick revision and provide strength to your technical skills. Q1. What […]
Read the rest of this entry »

jQuery: How to Strip/Remove HTML tags

In this short post, find jQuery code to strip/remove HTML tags. To remove HTML tags, use text() function which returns only the text content and ignores the HTML portion. console.log($('#dvTest').text()); You can also strip/remove HTML tags from any variable as well as text() is jQuery function, so the variable needs to be converted into a […]
Read the rest of this entry »

Latest jQuery Plugins released in June 2013

Today we bring a list of latest jQuery plugins released in June 2013. These plugins are fresh, interesting, simple and lightweight. You may find them useful for your next project!!! Related Post: 50+ Most Popular and Useful jQuery Plugins from 2012b> Cool jQuery Plugins released in May 2013 Cool jQuery Plugins of March 2013 SMINT […]
Read the rest of this entry »

Responsive Menu
Add more content here...