jQuery

Using jQuery in Chrome User Scripts (Greasemonkey scripts)

Posted on October 1st, 2011 by David Luhman and tagged , , .

If you want to much of anything useful in a Greasemonkey ("User") script, you'll want to use jQuery or similar library.

Greasemonkey uses a "@require" command to pull in these libraries, but Chrome won't allow this.

To include jQuery in a Chrome user script, here's a good link which pulls in jQuery by adding a element to the page you're working on.

http://erikvold.com/blog/index.cfm/2010/6/14/using-jquery-with-a-user-sc...

jQuery Wizard Controls

Posted on August 24th, 2011 by David Luhman and tagged , .

jQuery Formwizard

jWizard

jQWizard

jQuery Table Filters

Posted on May 21st, 2010 by David Luhman and tagged , .

Here are some tools I found that will help you implement table filtering in jQuery.

Simple Progress (Load) Bar with jQuery

Posted on February 13th, 2010 by David Luhman and tagged , .

Let's say you need to load some info into a page, but the info requires some time to process. You don't want to have the user staring at a blank screen during the processing, so first load the page with a busy (progress) bar image and then replace the image with the actual data when ready.

Assume you have this HTML page :


<html>
<head>
  <script type="text/javascript" src="/js/jquery.js"></script>
  <script type="text/javascript">
    $(document).ready(function() {
        $('#one').load('/one.php');