jQuery document viewer

jQuery document viewer is a jQuery plugin which allows you to view directly several file formats in a webpage. Supported file formats are: PDF Files Audio: mp3, m4a, oga, webma, fla Video: m4v, ogv, ogg, […]
jQuery in Namaste UI focused on jquery function, jquery online course, jquery book, html css javascript and jquery, jquery online link, jquery tutorial and jquery reference.
jQuery document viewer is a jQuery plugin which allows you to view directly several file formats in a webpage. Supported file formats are: PDF Files Audio: mp3, m4a, oga, webma, fla Video: m4v, ogv, ogg, […]
SlidesJS is a jQuery responsive slideshow plug-in for version 1.7.1+ with various features like responsive, CSS3 transition. It has the following features: Responsive CSS3 transitions Touch effect Easy setup Options width (number) & height (number) […]
Using jQuery you can search and highlight text within a div from array of elements and wrap a highlight span around each word. Example to search and highlight text: <script type=”text/javascript”> var regex = /(Rubbish|Like|Rough|Raw|Doggie|Billy)/ig; $(‘#divID’).each(function() […]
Sometimes it is very difficult to get content which is present in iframe. In this case normal javascript will not work. Here is a simple code to access iframe in jQuery: $(‘#frame1’).load( function(){ $(this.contentDocument).find(‘body’).html(‘This frame […]
In this article you will learn about few jQuery tips and tricks of interesting. Until you practice, you will not be able to be master of jQuery. jQuery tips: To check if checkbox is checked: […]
jQuery uses $ as a alias or shortcut. So if you use another javascript library (like prototype, mootools etc) that uses same alias then you are in a jQuery conflicts situation. Use no-conflict mode to […]
Sometimes it may happen that you used jQuery but it not working and you are in a deep trouble that makes you puzzle at a moment. So what to do with the jquery steps? Here […]
Using jQuery you can clear form fields. Here I am going to describe, how we can clear all of the fields except a few using jQuery. Example of Clear form fields: <div id=”mainDiv”> <input type=”text” […]
jQuery is a JavaScript library which is simple, light-weight, open source, cross browser and simplifies animations, event handling, and developing Ajax-based web applications and promotes rapid application development. Here are few jQuery tips: Check Element […]
jQuery lets you a way to write down your own custom CSS methods. CSS Hooks directly into jQuery to override custom properties. I think you have written so many time in your website for different […]