Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

script


jQuery loadAdScript

Load third party ad network scripts that use document.write into specific containers.

The only downside is that the ads will load serially.. but that’s necessary to keep them from stepping on each others’ toes. And the upside is that your site isn’t completely borked!

Full documentation, source, and examples are available on benalman.com.

Extended Breadcrumbs jQuery Plug-in

xBreadcrumbs (Extended Breadcrumbs) is a jQuery plug-in to create categorized breadcrumbs for your site. This may be useful if your website has a deep structure and you want allow your visitors to quickly navigate through one section of the site to another. xBreadcrumbs works with unordered lists (UL/LI) which would make your breadcrumbs fully optimized for search engines. An SEO freidnly breadcrumb has many benefits.

Features

  • Light-weight script (~3Kb)
  • Easy to integrate
  • Fully customizable via CSS
  • Works with all modern browsers

Re-load sepcified CSS (LINK tag) or Javascript (SCRIPT tag) on fly

Reload extension enhance your debugging experiance.

How many time have you pushed the refresh button for applying new style or new code?

It's over now, Reload allows you to retrieve specified css/script file by simply calling

$('script').reload();
$('link').reload({interval:5000}); // retrieve link every 10 secondes

//Reload only the site-debug file
$('script[src$=site-debug.js]').reload();

ActionScript Style External Script Loading / Importing

An ActionScript 3.0 ActionScript Style External Script Loading / Importing with a folder simulated NameSpace like ActionScript with the ability to add firebug console logging, onBefore, & onAfter handlers.

Insert Script

Lazily load javascript and other files whenever you want easily. You can also increase page load by using this plugin to load all of your other scripts after page load! The method returns the html object, allowing you to manipulate it. For example, you can use the onload() method provided with jQuery to add a callback function for once the script finally loads. It's as easy as:

$.insert('my_script.js');

More documentation on my site. Extremely extensible and easy to use.