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.

Plugins


1 year 21 weeks ago

A good way to have extra content or a navigation tool in your page!

This jquery component let you easly build a sliding panel where to insert any kind of content; it has builtin all the functionalities for managing menu lines and sub panels with accordion effect. It can get the content via ajax and therefore you can dynamically build it by passing DATA via request using the metadata attribute settable on the extruder container.

demo page:
http://pupunzi.com/#mb.components/mb.extruder/extruder.html

download page:
http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-extruder/

Dependencies:

  • jquery.hoverIntent.js
  • jquery.metaData.js
  • jquery.mb.flipText.js (soon available as stand alone)
< < < < < < <
2 weeks 6 days ago

AJAX-ZOOM player is a powerful single image zoom & pan viewer with optional gallery extension. It features over 300 other options and can be easily integrated into any website, eCommerce solution or CMS.

AJAX-ZOOM uses image tiles to quickly generate a portion of the zoomed image (similar to Google Maps).

In a special 360° rotation mode it can also be used as object spinner.

Links
Examples
Magento (demo store)
xt:Commerce (xtcModified demo store)
VR Objects 360° (3D Spin & Zoom)
Oxid (demo store)

< < < < < < < < < < <
1 year 28 weeks ago

Disallows resubmission of ajax requests by disabling the submitting button and re-enabling upon response.

Customizable: Disabled class, attribute, and value

< < <
1 year 18 weeks ago

WiseJS - a wise tool for web developers

The components of WiseJS allow to embed any javascripts components in ASP.NET, including jQuery Plugins, jQuery UI, and more, includes powerful assistants to access different database, creation of events/actions on the server side and/or client side. Allows the simultaneous use of C # or VB and javascript.
Note: When viewing the full demo for the first time, be patient because the demo needs to load a set of full libraries; jQuery, jQuery UI, ExtJS, Dojo, DHTMLX ...

WiseJS´s components have two main goals:

A - The first scenario envisages the use of any component javascript. Allows it to be integrated into ASP.NET, using components from WiseJS specially created for this purpose.
These components contain a powerful assitant, which facilitates the integration, such as easy access to various databases, creation of events/actions to be processed on the server side, ...

< < < < < < < < <
2 years 32 weeks ago

This jQuery class will read RSS feeds on a website through the use of AJAX and feed the data into a template as defined by the developer. Simple create a template object and define the "item" level of the RSS feed once within the object using variables for the different feed items. This plugin will then read the feed and duplicate the template object however many times specified- creating a simple feed reader. VERY easy to implement. http://www.ooeygui.net

< < < <
2 years 49 weeks ago

This plugin allows you to convert parts of the page into editable areas, just click on them and when you finish editing click outside. If you convert an inline element (h1...h5, p ) with this script, the line breaks will be disabled.

< < < < < <
2 years 5 weeks ago

Plugin to dynamically handle different content types for an AJAX response.

Usage

Should be nearly identical in usage to the built-in $.ajax method except
automatically post-processing response data according to incoming mime-type,
and the parameters passed to the success callback.
Those are now:

( data, contentType, statusCode )

Where data is the same as it always has been, contentType is a string representation
of the content type, and statusCode is the actual numerical HTTP status code
returned from the server.

You can also use custom content-type callbacks such as html, json, and script.
The callback for the respective content-type will be called immediately after the success callbacks.

< <
1 year 22 weeks ago

Here it is!
Finally I realized the DIV box model of the (mb)Containers!

This is a useful plug in to build full featured and fully skinnable containers.
The container can be set to draggable, resizable, collapsable and minimizable.

demo and doc: http://pupunzi.wordpress.com/mb-jquery-components/mb-containerplus/

dependencies:

ui.core.js
ui.draggable.js
ui.resizable.js
optional: jQuery.metadata.js

How does it work:

here is the js call:

$(function(){
$(”.containerPlus”).buildContainers({
containment:”document”,
elementsPath:”elements/”
});
});

here is the code for each container:

Titolo container 1

< < < < < <
2 years 23 weeks ago

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.

<
3 years 35 weeks ago

Dynamically add a new option to a select list. A customised form (which you specific) is ajax submitted. A successful ajax return adds the new item to the select list.

< < < <
1 year 51 weeks ago

Helps you to manage Ajax requests and responses (i.e. abort requests, block requests, order responses).

Note: The version (2.5.x) is not compatible with jQuery 1.4. Ajaxmanager version 3 is compatible with jQuery 1.4.x and is located at http://www.protofunc.com/scripts/jquery/ajaxManager3/.

< <
2 years 48 weeks ago

Ajax Autocomplete for jQuery allows you to easily create autocomplete/autosuggest boxes for text input fields.

< < < <
3 years 30 weeks ago

This module checks your links on the current page by requesting them and reading the server response. If the server returns 200 OK the link gets 'active' class, if other header - the link marked as inactive.

Uses php script as the backend.

$('a.goto').linkChecker({ linksAtOnce : 2, timeout: 4 });

<
2 years 18 weeks ago

:: EN ::
Ajax Developer Debug is a plugin to debug yours XMLHttpRequests.
The plugin allows that you capture all errors returned from Ajax in jQuery.
This plugin can be used in development enviroment for display erros at runtime, or to put inside your web application in a specific HTML element.
---
:: PT-Br ::
Ajax Developer Debug é um plugin para debugar requisições XMLHttpRequest.
O plugin permite que você capture todos os erros retornados pelo Ajax no jQuery.
Este plugin pode ser utilizado em um ambientente de desenvolvimento para mostar erro em tempo de execução, ou ainda inserir esses erros em um elemento HTML na sua Aplicação Web.

<
2 years 51 weeks ago

I've moved the project to Google Code, all future releases will be posted there. http://code.google.com/p/ajaxdotnet/.

Provides a function which allows GET and POST requests to ASP.NET Ajax enabled PageMethods and Web Services. The function only supports JSON requests and requires JSON2.js from json.org.

ajaxDotNet supports global and per call event handlers. Global event handlers fire regardless of the individual call. Per call event handlers can be set on the actual call or through the defaults function. event handlers set on the call override handlers set through the defaults function.

Usage Example:

$.ajaxDotNet.globals({
processData: function(r) {
//Do Stuff
return r;
}
});

$.ajaxDotNet.defaults({
error: function(r) {
//Do Error
}
});

$.ajaxDotNet('WebService.asmx/Method', {
verb: 'POST',
data: {id: 1},
success: function(obj) {

<
2 years 46 weeks ago

This small plugin will let you do the same "loading..." as gmail does. Simply as extending $.ajax with delay as following:

$.ajax({
beforeSend: callback,
delay: {
   callback: callback1,
   time: 5000 // delay timeout in ms
},
success: callback2,
error: callback3,
complete: callback4
});

In this example, whenever a request/response takes longer than 5 seconds, callback1 will be called. To check it out, you can do the following:

var callback1 = function(){
   alert("still loading...");
};
<
4 years 29 weeks ago

Upload files via an individual file type of input element without uploading extra unwanted form fields

< < < <
3 years 4 weeks ago

This plugin replaces the standart file input element. It allows you to upload multiple files without refreshing the page and use any link, image or other element instead of the file input to show the "file selection" dialogue.

< < < <
1 year 33 weeks ago

A simple way to upload multiple files or images using jQuery with less manipulation of your native file uploading script.

This file upload script uses iframe for upload process and jQuery for manipulating files and client file validation.

< <
1 year 20 weeks ago

Really simple jQuery Ajax File Uploader plugin.

Well, it's not really Ajax uploading considering file upload with ajax is not possible, but the end result is similar.

This jQuery plugin creates a hidden iframe and sets the form's target attribute to post to that iframe. When the form is submitted, it is posted (including the file uploads) to the hidden iframe. Finally, the plugin collects the server's response from the iframe.

This pseudo ajax file upload plugin is about 550 bytes minified and gzipped.

< < < < <
2 years 11 weeks ago

AjaxLink JQuery is a plugin that provides an easy way to load content links via ajax

Setup

<script type="text/javascript" src="jquery-ajaxLink.js"></script>

Quick Start

$(document).ready(function(){
       $(".ajaxLink").ajaxLink();
});

Ajax Links

   <a href="1.html" class="ajaxLink">Link 1</a><br />
   <a href="2.html" class="ajaxLink">Link 2</a><br />

Setting target content

<div id="content" style="text-align: center" ></div>
<
3 years 24 weeks ago

Automated dynamic form sending via Ajax and validation via response. Added with one function call.

I will add more documentation today.

<
2 years 36 weeks ago

Use this plug-in when you want to inform your visitors that a certain part of your page is currently loading.

The plug-in adds a faded 'loading-div' on top of selected elements.

<
3 years 19 weeks ago

Ajax driven image file upload with thumbnail view and delete function.

< <
2 years 6 weeks ago

Ajax Powered Autocomplete (Dropdown list) Plugin for JQuery based on the other version (also of my creation) for other javascript frameworks.

Fully customizable through CSS.

< < < <
3 years 31 weeks ago

Ajax Queue is a plugin that helps to manage Ajax race conditions. When multiple Ajax requests are made in rapid succession, the results can be returned out of order. This can cause weird behavior in your application. Ajax Queue is a plugin (actually, 2 plugins) that provide a way to manage these requests. This plugin was written by John Resig and is maintained by Mike Hostetler.

<
2 years 2 weeks ago

This plugin extend ajax functionality of your web page. It brings the possibility to execute custom and repetitive actions in background of the page, so you can dialog with the server in real time.
It manages a continuous connection with the server. It create a customizable loop with an action queue to add some actions and parse automatically the XML/Text response of the server to execute your appropriate/custom actions.

Some interesting examples/ideas which can now be made easily:

  • - Refresh an html field in real time
  • - sessions management (warn when session will expire, auto reload it)
  • - add a simple chat
  • - display message when a user receives a new mp

And all of this in real time

Doing a extended website with Ajax has never been such easier.

<
1 year 30 weeks ago

Incorporates retry functionality (employing Exponential Backoff, or more specifically Truncated Binary Exponential Backoff) into jQuery.

<
2 years 41 weeks ago

AjaxScroll is an lightweight jQuery plugins . Provided the ajax scollpane to replace the Next/Previous buttons, behaviour similar as MSN Image Search(Live.com Search).

< < < < <
2 years 1 week ago

jQuery plugin to create a web-based console-like behavior that posts user input commands to an AJAX server, and prints the result text.

Designed to be utterly simple and highly customizable.

The usage is pretty simple, try using this example as a template: http://n0nick.net/jquery/terminal/

You can see a sample of a terminal server here: http://n0nick.net/jquery/terminal/server.phps

< < < <