Plugins: Ajax
$.editableAreas
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.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.4 | 2009-Mar-02 | Recommended for 1.0.x | ||
(mb)Extruder, slide extra content or a navigation tool in your page
Last changed: 5 days 16 hours 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
Dependencies:
- jquery.hoverIntent.js
- jquery.metaData.js
- jquery.mb.flipText.js (soon available as stand alone)
here is the js call:
$("#extruderTop").buildMbExtruder({
positionFixed:true,
width:350,
sensibility:800,
position:"top",
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.6.0 | 2010-Mar-14 | Recommended for 1.3.x | ||
ActionScript Style External Script Loading / Importing
Last changed: 28 weeks 4 days 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.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.1.1 | 2009-Aug-31 | Recommended for 1.0.x | ||
Add To List
Last changed: 1 year 40 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.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.0.0 | 2008-Jun-06 | Recommended for 1.2.x | ||
Ajax Manager (block, abort, queue, cache)
Last changed: 13 weeks 5 days 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/.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.1.1 | 2008-Sep-04 | Recommended for 1.0.x | ||
| 1.2.1 | 2008-Dec-13 | Recommended for 1.2.x | ||
| 2.5.4 | 2009-Dec-13 | Recommended for 1.3.x | ||
Ajax Broken Link Checker
Last changed: 1 year 35 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 });
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.2-dev | 2008-Jul-13 | Recommended for 1.2.x | ||
Ajax Dot Net
Last changed: 1 year 21 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) {
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 3.0.0 | 2008-Oct-18 | Recommended for 1.2.x | ||
ajax feedback using delay callback
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...");
};Ajax file upload plugin
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.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.4 | 2008-Dec-03 | Recommended for 1.0.x | ||
| 0.9 | 2009-Jan-10 | Recommended for 1.2.x | ||
| 2.0 | 2009-Feb-22 | Recommended for 1.3.x | ||
Ajax Link
Last changed: 17 weeks 13 hours 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>| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.0.0 | 2009-Nov-20 | Recommended for 1.3.x | ||
Ajax Multi Image File Upload
Last changed: 1 year 22 weeks ago
Ajax driven image file upload with thumbnail view and delete function.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 2.1 | 2008-Oct-16 | Recommended for 1.2.x | ||
Ajax Queue
Last changed: 2 years 30 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.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.0.0 | 2007-Aug-20 | Recommended for 1.0.x | ||
Ajax Real Time Extension
Last changed: 6 weeks 6 days 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.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.6 | 2010-Jan-30 | Recommended for 1.0.x | ||
| 1.5 | 2010-Jan-27 | Recommended for 1.3.x | ||
Ajax Scroll
Last changed: 46 weeks 5 days 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).
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.1 | 2009-Apr-26 | Recommended for 1.2.x | ||
AJAX Terminal
Last changed: 6 weeks 2 days 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
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.4.1 | 2009-Nov-13 | Recommended for 1.0.x | ||
| 0.4.5 | 2010-Feb-03 | Recommended for 1.3.x | ||
Ajax Text2Input
Last changed: 1 year 34 weeks ago
Simple ajax component for edit in place.
Can replace any div, span, p, etc ... by an input box and two buttons to update or cancel the editing.
You can customize the class used for the input tag, the url where you send your post data and the keyword for general use (I used to put inside this variable the function name or member name that I call in the php side of the system).
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.1.0 | 2008-Jul-18 | Recommended for 1.2.x | ||
Ajax Tooltip script
This script enhances the default "title" attribute of HTML so certain tooltips can instead get their contents from an external file, with rich HTML content and all. Integration is easy and non obtrusive, and for the sake of efficiency, the script will only use Ajax to load the tooltip's content the very first time the user rolls over the attached element.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.2 | 2008-Jul-10 | Recommended for 1.2.x | ||
ajaxContactForm to simplify te sending of a inquiryform.
Last changed: 1 day 9 hours ago
jquery.ajaxContactForm is a plugin made to simplify te sending of a inquiryform. The plugin gathers all the filled out data, after testing it on: required values, required numberical values and/or required e-mail structure. After that it sends the form via AJAX (JavaScript).
The forms that will be send are protected against spam because:
- * There is no form-tag in the DOM, spam-bots can't see that the data will be send, let alone with what page/script it will be send;
- * A field -invisible for human visitors- will be added which may not be filled out, spam-bots like to fill out as much as they can.
The plugin can also be used as a stand-alone form-validator and/or as a stand-alone default-value-clearer.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.3.1 | 2010-Mar-19 | Recommended for 1.0.x | ||
| 1.3.0 | 2010-Mar-19 | Recommended for 1.3.x | ||
ajaxContent
Last changed: 2 years 7 weeks ago
The plugin refers to an A tag and use the
Href attributes to make the call filling up a #ajaxContent div on the
page with the server resposnse.
The plugin manage:
1) the display of a loading message ( an img if you want )
2) the error message ( cutomizable) display if needed
3) the call of course
4) the loading data in the div
5) the event is click but is customizable as you prefer as of course
the target element.
Is nothing special nut I love to set up my standard ajax like thi:
$('.ajax').ajaxContent();
and let the plugin do the work for me.
Ajaxel
Last changed: 46 weeks 12 hours ago
Send a file via ajax request? it's possible.
Send simple ajax request, send form...
Try the simplicity of this plugin.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.1 | 2009-Mar-25 | Recommended for 1.0.x | ||
| 0.3.0.3 | 2009-May-01 | Recommended for 1.3.x | ||
AjaxFilter
Last changed: 1 year 32 weeks ago
This plugin requires jQuery +1.3. that includes 1.3 beta releases (already out)
This tiny plugin provides a registry for different filter functions to sanitize ajax responses.
If you want to provide a new implementation, you need to do something like this:
jQuery.ajaxFilter.register( 'js_in_href', 'html', function( data ){
return data.replace(/href="javascript:[^"]+"/g, '');
});or
jQuery.ajaxFilter.register('eval', 'script html json', function( data ){
return data.replace(/eval\(.+?\);?/g, '');
});Arguments for jQuery.ajaxFilter.register() are:
- Name for the filter, used as 'filter' when calling jQuery.ajax.
- One or more dataTypes to handle. Can be any combination of ajax, html, json and xml separated by spaces.
- The filter function. Will receive 2 arguments: the data and the type. The 'this' will reference the settings object.
To use it, you do:
jQuery.ajax({
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.0.1 | 2008-Aug-08 | Recommended for 1.2.x | ||
Ajaxify
Last changed: 23 weeks 2 days ago
jQuery Ajaxify can turn any link or form from a standard request to an AJAX request.
The main difference when compared to most implementations is that the submission button (or image) is also sent with the ajax request.
Simple call to $('form').ajaxify(); should be sufficient in most cases.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.4 | 2009-Oct-07 | Recommended for 1.3.x | ||
Ajaxify - More than ajax!
Last changed: 1 year 14 weeks ago
What is it?
Ajaxify is a jQuery plugin. it can convert all links a web page into an ajax load and submit requests. with this ultra weight plugin, you can build a complex ajax website with one single line. welcome to web 2.0 world!!.
Instructions:
- Download the plugin.
- upload it to your website along with jQuery library if you still don't have it.
- Add these lines in the top of your page.
- Add class "ajaxify" to the 'a' tag and specify the target on which the output will take place. Ex:
<script type="text/javascript" src="ajaxify.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.ajaxify').ajaxify();
});
</script>| Version | Date | Links | Status | |
|---|---|---|---|---|
| 2.0.0 | 2008-Dec-11 | Recommended for 1.0.x | ||
ajaxPager
Last changed: 31 weeks 3 days ago
ajaxPager is a jQuery UI widget plugin for building javascript pagers quickly and easily. Each page’s content can be from either a ajax request, a url (iframe), string, element inside the pager, or element outside the pager.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.4.2-beta-6 | 2009-Aug-11 | Recommended for 1.3.x | ||
AjaxPanel
Last changed: 25 weeks 5 days ago
AjaxPanel is a jQuery plugin that provides a uniform way to update HTML elements, updating is based on jQuery's low-level AJAX implementation. However, AjaxPanel is easier to use with following features:
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.2.1-0 | 2009-Sep-20 | Recommended for 1.0.x | ||
AjaxQ
Last changed: 1 year 34 weeks ago
AjaxQ is a jQuery plugin that implements AJAX request queueing mechanism.
Why?
There are several reasons why you may need to queue AJAX requests and run them in a sequential manner:
- Browsers impose a limit on the number of open connections to the server. All requests that do not fit in the limit are going to wait for being run anyway. Internet Explorer does not open more than 2 connections per server at a time by default. Mozilla Firefox, Opera and Safari have a limit of 8 connections per server.
- Sometimes it is essential to avoid flooding the server with plenty of simultaneous AJAX requests.
- Web application needs AJAX requests to run one by one by design, the order is important.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.0.1 | 2008-Jul-22 | Recommended for 1.2.x | ||
AjaxTop - AJAX with Tag Oriented Programming
AjaxTop is a package that adds XML to JavaScript binding. It provides two main extension methods, the loadTag() method and the registerTag() method. The loadTag() method sends an AJAX request and applies the result to the selected object in similar fashion to the load() method. The response is expected to be XML which is automatically parsed and mapped to objects as determined by registerTag() calls. The mapped objects generate the output that is applied to the selected object. See AjaxTop for more details.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 3.0.1 | 2007-Nov-11 | Recommended for 1.2.x | ||
Auto Complete
Last changed: 16 weeks 5 days ago
Takes input from the user, and creates a drop down with words similar to the input given.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 5.0 | 2009-Nov-22 | Recommended for 1.3.x | ||
Auto parse response based on content-type header
Last changed: 1 year 31 weeks ago
APCTH - Auto Parse Content-Type Header
With this plugin, jquery will parse the the content-type and process the content accordingly with no need to specify the dataType.
Inspired on this ticket http://dev.jquery.com/ticket/2733
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.2 | 2008-Aug-14 | Recommended for 1.0.x | ||
aws xml Editor
Last changed: 5 days 21 hours ago
Based on jQuery 1.3.2 and jQuery UI 1.7.2 (works with jQuery 1.4.2 and jQuery UI 1.8.rc3, but not fully tested), this software helps you create / modify the content of xml files in a simple / intuitive way. This Software is intended to be a tool for editing xml files as standalone storage or datasource for configs. This software cannot handle html files
If you like my work, and find this tool useful, please rate this up!!!
New version released: 0.5
* Now you can use any xml file without worry. This version has complete xml support.
ChangeLog
* 0.5: Feature: Basic CSS search feature; displays like: > rootNodeName(1) > ChildNodeName(OwnIndexFromParentChilds) > ChildNodeName(OwnIndexFromParentChilds) >... > foundElementParentNodeName(index of our element)
* 0.5: Improvement: changed back to auto resize to 90% of browser window
* 0.5: Improvement: better bubble messages
* 0.5: Feature: comment and cdata section added
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.5.0-2010-03-11 | 2010-Mar-14 | Recommended for 1.3.x | ||
cascade
Last changed: 1 year 38 weeks ago
Tiny plugin accomodates cascading data in response to page events. Canonical usage is cascading select lists pulling data from either client-side or server-side requests based on current form state (i.e., select value).
This plugin, however, will accept any event to trigger the cascade into any element type and you can chain as many lists together as you need and each can have distinct datasources.
Using the (optional) templating plugin this can simply encapsulate how data is presented in response to user input.
See the demo in the package for usage examples.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.1.2 | 2008-Jun-24 | Recommended for 1.0.x | ||
CeeBox
Last changed: 9 weeks 2 days ago
CeeBox creates a lightbox-like popup overlay for images, image, html via ajax and iframe (both modal and non-modal), and flash movies. Videos will be displayed in a popup simply by adding "ceebox" to a link a YouTube movie page. CeeBox supports auto-embeded popups for Google Video, YouTube, Metacafe, Vimeo, Dailymotion, iFilm, and Facebook videos.
It also creates gallery next/prev buttons for any type of content images/videos/html if ceebox is applied on a parent element with links underneath.
Best of all the minimized version of jquery.ceebox.js is only 13KB! This is smaller than many of the lightbox-like scripts out there.
If CeeBox is so small, why is the release download zip so big?
I've included the source psd files for the buttons so that people can alter them if they want. Nice of me huh?
CeeBox Requirements
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 2.1.3-patch | 2010-Jan-13 | Recommended for 1.3.x | ||
Chat
Last changed: 1 year 51 weeks ago
Ajax chat
You'll need some php/html/css to make the chat work.
The php is an example using the Kohana framework, the only important thing is json_encode() function you must use for every output.
You cannot specify a username with the javascript, the username is retrieved from a database or a session. The only var sent to the PHP is the message itself.
All code is in french, will release it in english if it has some success
CheckTree(ycTIN Edition)
Last changed: 43 weeks 4 days ago
This edition is compatible with CheckTree, fixed some bugs and added some new function. You can easily to integrate and handle AJAX update.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.1 | 2009-May-18 | Recommended for 1.0.x | ||
Codepress Plugin
Last changed: 2 years 4 weeks ago
IMPORTANT: This project will not be maintained on this system. Please visit the official website for the latest download files and support:
http://www.fyneworks.com/jquery/Codepress/
-
Tested and works on Firefox2, IE7 and IE6 (all in WinXP SP2).
Codepress is not supported on Opera/Safari (or is it?), but form submission still works. -
The same principle can be applied to TinyMCE, FCKEditor and any other rich-text editors.
Any input regarding other rich-text editors is welcome. -
The plugin will intercept known methods and install itself against related plugins
(currently only the jQuery Form Plugin).
Any input regarding integrating this plugin with other jQuery plugins is welcome.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.1.0 | 2007-Jun-30 | Recommended for 1.0.x | ||
Comet
Last changed: 2 years 7 weeks ago
Implementation of Bayeux protocol for jQuery. Current supports, handshake, subscriptions, binding callbacks into the jQuery event system based on channel names.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.6 | 2008-Jan-24 | Recommended for 1.2.x | ||
CORS
Last changed: 9 weeks 5 days ago
I snagged this from a blog and thought it deserved to be a plugin
http://saltybeagle.com/2009/09/cross-origin-resource-sharing-demo/
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.9-rc-1 | 2010-Jan-10 | Recommended for 1.0.x | ||
ctRotator
Last changed: 1 year 18 weeks ago
An highly customizable item/image rotating script. Supports creating the rotator from various data sources, such as JavaScript object, HTML UL/OL list, RSS feed, Flickr feed. More data sources can be supported with custom bridges.
Preview the plugin: http://test.thecodecentral.com/ajax-rotator/
Full documentation: http://thecodecentral.com/2008/11/12/ctrotator-a-flexible-itemimage-rota...
Call ctRotator with a data source on a selected element:
<ul id="container"></ul>
<script type="text/javascript">
$('#container').ctRotator(dataSource, {
showCount:5,
speed:1000
});
</script>Format of the data source (can be from other sources):
var dataSource = [
{title: 'test', url: 'http://thecodecentral.com', tip: 'Programmer\'s blog for programmers'},
{title: 'test2', url: 'http://thankyouproject.org', tip: 'Fill the World with Thanks'},
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.9-rc-1 | 2008-Nov-12 | Recommended for 1.2.x | ||
Currency
Last changed: 1 year 28 weeks ago
Currency: an unobstrusive automatic and real time currency conversion
This is a small tool that may prove to be usefull. It permits automatically converting any currency to any other currency on a website, with real time quotes. It is
implemented using an ajax PHP script backend (for cross-domain issue).
How to install:
Simply copy the currency-ajax.php file to the website (for example in the root folder), the jquery.currency.js and currency.css files. In addition, you can use the set
of icons provided in the package, or your own.
How it works:
Currency reads automatically traverses the DOM and processes every element tag with class currency. Each automatically converted currency value uses the
rel= tag for the options.
Here is an example:
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.0.0-0 | 2008-Sep-01 | Recommended for 1.2.x | ||
Customizable Live Search
Last changed: 27 weeks 13 hours ago
This plugin enables ordinary text inputs to have live seach capabilities.
As a user types, the plugin calls a specified function.
Features:
- Query Delay
- Only executes the callback after a delay (default is 250ms) so that fast typers won't drown your website with too many calls.
- Minimum Search Length
- Specify a minimum search length (default is 3 characters) so that your system doesn't get incomplete and broad searches.
- Initial text
- Display initial text (default is "Search") that is automatically cleared when a user focuses on the text input.
Style this by using the class "inactive_search". - Multiple Instances
- This plugin written so that you can have multiple live search text inputs on the same page.
Usage:
$('#textfield').livesearch({
searchCallback: searchFunction,
queryDelay: 250,
innerText: "Search",
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.0.0 | 2009-Sep-11 | Recommended for 1.0.x | ||
DADASUGGEST
Last changed: 51 weeks 11 hours ago
DadaSuggest is a jQuery Ajax autosuggestion plugin that enables the use of autosuggestion controls in your web pages with only a few lines of simple configuration code. The styling of the suggestion list is left up to the page author, so it can be made to look in anyway you want. It is absolutely free of use and can be freely distributed and modified without the author's permission.
Sample HTML search box
<h3>Search for the name of a country or it's capital city</h3>
<div id="searchSuggestionsWrapper">
<div id="searchWrapper">
<input type="text" id="search" />
</div>
<div id="suggestionsWrapper"></div>
</div>Attach the plugin to the search box
$('#search').dadasuggest({
"suggestURL" : "/projects/getSuggestions/",
"searchSelectURL" : "/projects/searchSuggestions/",
"searchEnterURL" : "/projects/searchSuggestions/"
});| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1 | 2009-Mar-27 | Recommended for 1.3.x | ||
Delicious tagInput
Last changed: 3 weeks 3 days ago
jquery.tagInput is a delicious inspired tagging input field.
Main features:
- supporting already used tag list, eventually filled with an Ajax call
- filtering results using user inputs
- supporting suggested tags, with “smart” selection
- supporting multiple separators
- supporting frequency
- having a nice-ligth-stylish look
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.0.4 | 2010-Mar-01 | Recommended for 1.3.x | ||
dirLister
It's a directory lister
download to http://download.guistalk.com/js/jQuery/
DEFAULT VALUES :
directory: "/",
webDirectoryPath: "/",
scriptLocation: "dirlister.php",
filesIgnored: ".htaccess, .htpasswd, robots.txt",
onEvent: "click",
openEasing: null,
closeEasing: null,
openSpeed: "normal",
closeSpeed: "normal",
multiOpen: false,
dateFormat: "d/m/y H:i",
loadText: "Loading…",
emptyText: "Empty",
lang: "en",
showDirPath: true,
dirPathPosi: "top",
filesLinkFollow: true,
safeContent: trueUSAGE :
$('#tree').dirLister(
{
directory: "…",
webDirectoryPath: "…",
scriptLocation: "…",
…
}, function(file)
{
alert(file.name+" - "+file.path+" - "+file.ext);
});| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.1 | 2008-May-05 | Recommended for 1.0.x | ||
DivToText
Last changed: 1 year 3 weeks ago
The divtotext plugin will convert a div to a text field with a save button inline. It is easy to customize and accepts a URL for AJAX post back.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.1.3-beta-3 | 2009-Feb-25 | Recommended for 1.2.x | ||
dotNet
Last changed: 44 weeks 3 days ago
This plugin is a jQuery 1.2.6 shortcut to the call Web Services or Page Methods under .NET Framework.
With this plugin you can develop AJAX sites under .NET easier than ever, with an EXCEPTIONAL performance!.
I tested this plugin with the JSON.NET framework http://www.codeplex.com/Json. I used this framework, because is very flexible with the JSON output.
I hope you like it,
and Happy Coding!
Updates
2009-05-12 - Added the versions 0.2 & 0.3 of the plugin by San contribution (thx!).
Version 0.2: Removes the dependency of the JS JSON external library. Now uses the ASP.NET AJAX JSON integrated parser.
Version 0.3: Changes the plugin function signature, so this WILL BREAK YOUR OLD CODE. Now the function call is: function(url, data, onSuccess, onFailure, userContext). And the signatures of onSuccess, onFailure becomes function(result, userContext, methodName). This mimic the ASP.NET AJAX’s calling convention (per San words) :)
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.2.0 | 2009-May-12 | Recommended for 1.0.x | ||
| 0.3.0 | 2009-May-12 | Recommended for 1.2.x | ||
Drop Down Panel script
Drop Down Panel adds a pull down panel to the top of your page that contains external content fetched via Ajax. Visitors click on the protruding button to cause the panel to drop down and reveal its content. Clicking anywhere on the panel again closes it. You can easily customize the height of the Panel, button text (ie: "panel content"), and drop down speed in milliseconds. A plug and play Ajax drop down panel!
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.0 | 2008-Apr-03 | Recommended for 1.2.x | ||
Dropdown populator
Last changed: 13 weeks 3 days ago
populate dropdowns ("<select/>") with a predifined list or better with an ajax call returning a list of options (or a hard coded json object).
in your head section:
<script type="text/javascript" src="/dropdown.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//the ajax call
$(".status").dropdown({url: '/Accounts/getStatus.cgi'});
//or the hardcoded way
$(".dropdown").dropdown({list: [{0:'opt 1'},{1:'opt 2'},{2:'opt3'}]});
});
</script>in your form add:
<select class="status" name="status" val="1"/>
<select class="dropdown" name="type" val="3"/> EasyLazy - lazy javascript importer
Last changed: 32 weeks 20 hours ago
This is another lazy javascript loader. It has some functionality to easily add scripts on demand and execute a callback. It checks to load a script only once and will que all callback functions if successive loading requests come without the script being loaded yet.
There are also 2 different ways to set a baseurl to shorten the loading tag.
$.easylazy('path to script', callback_function, forcecallback, usebaseurl);
defaults: forcecallback = true, usebaseurl = true
Normal example:
$.easylazy('somescript.js', my_function);.
Use method from loaded js example:
$.easylazy('somescript.js', function(){ function_in_somescript(); });.
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.1 | 2009-Aug-07 | Recommended for 1.3.x | ||
editEase
Last changed: 18 weeks 2 days ago
editEase Precis
A very simple jQuery CMS that can be configured and set up in around 2 minutes. Plugging in to your site is a breeze, and can be done at almost any time during the life cycle of development.
Includes/Highlights
Edit in place, Plain Text and WYSIWYG editing, Multi File Upload file manager.
Demo Access
As a few people have commented on the speed of this plugin I have placed two identical demos online, 1 on our Australian servers and 1 on our US server.
Australian Server http://editease.jquerystuff.net
US Server http://jquerystuff.com/editease
Click on the "ADMIN" link in the bottom right hand corner of the page.
Username: admin Password: pass (yes the same for both servers)
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 1.5.1-1.5.1 editEase base install | 2009-Nov-12 | Recommended for 1.0.x | ||
| 1.5-editEase Base only | 2009-Nov-08 | Recommended for 1.2.x | ||
Ejabberd Webpresence
Last changed: 46 weeks 2 days ago
This is a jQuery plugin that shows a dynamic jabber badge, reflecting
current presence information for a given XMPP account. This is
designed for use with the ejabberd server, and it *requires* the
mod_webpresence module installed on the server.
You can find more information on the mod_webpresence module here:
http://www.ejabberd.im/mod_webpresence
In order for this plugin to do automatic updates, the Timer plugin is
required! You can get it here (or from the jQuery plugins page):
http://jquery.offput.ca/every/
You can see a live example of this plugin in sweet, sweet action
here:
http://www.martini.nu/contact.html
| Version | Date | Links | Status | |
|---|---|---|---|---|
| 0.1 | 2009-Apr-30 | Recommended for 1.0.x | ||
