All jQuery Codes

Export table data to Excel using jQuery

You must have exported table data to excel using server side language like ASP.NET, PHP, JSP etc. But how about exporting HTML table data to Excel using jQuery. To export the table, use window.open() method to open Excel application and pass the table's content. window.open(MIMEtype,replace); MIMEtype: Optional. The type of document you are writing to. […]
Read the rest of this entry »

How to change jQuery UI Tooltip font style

When you download jQuery UI, all the widgets comes with predefined theme or style. But sometimes, it is required to override or change default font style to match up with your current webpage style or css. For example, assume that all the controls on your page are having font-size of "8pt" and jQuery UI tooltip […]
Read the rest of this entry »

jQuery code to hide

tag with specific text

Suppose your webpage has many <p> (Paragraph) tags/elements, and you want to hide those paragraph elements which have specific text or word. For example, hide all p tag element which have "jquery" word in it. This can be done easily using jQuery. jQuery has ":contains" selector which can be used to select p tags with […]
Read the rest of this entry »

tag with specific text

Show and Hide jQuery UI Tooltip with Animation

jQuery UI 1.90 library tooltip is an awesome widget. By default, the jQuery UI Tooltip is displayed without any animation. But do you know that you can animate the tooltip while showing and on hiding? Yes, It's Possible. In this post, You will see that how that can be done. Related Post: Create Tooltip using […]
Read the rest of this entry »

MD5 Encryption using jQuery

Yesterday I needed to convert an input value to MD5 encrypted value using jQuery and sent to the server. jQuery library doesn't provide a function for MD5 encryption however there are some plugins available which can help. So in today post, I will show you how can you convert to MD5 using 2 different jQuery […]
Read the rest of this entry »

Move jQuery UI Tooltip with mouse

In my previous post, I had explained how to "create Tooltip using jQuery UI library". By Default, the tooltip appears next to the element and it doesn't move. Today, I will show you how can you make jQuery UI Tooltip follow the mouse. In short, the tooltip will move with the mouse. jQuery UI Tooltip […]
Read the rest of this entry »

Responsive Menu
Add more content here...