Plugins:
Accessible
Last changed: 19 weeks 5 days ago
What is this ?
- This plugin aims to be a collection of snippets that improve accessibility for websites.
- It also includes a set of "recommendations" coded as tests to improve accessibilty (even beyond javascript).
- These recommendations can be tested against a page, and get a summary of the results.
How to use it ?
- First add a call to jquery.js (duh!).
- Add jquery.accessible.js. This contains the engine for rules/fixes and a set of predefined ones.
- Right after this, you are ready to run the fixes by calling jQuery.accessible(). You can pass in a hash to specify, with the id and true or false, which ones to run.
IMPORTANT: don't call this function inside document.ready, call it right away instead.
If you want to run the tests in your page:
- Add jquery.accessible.validator.js after jquery.accessible.js.
| Version | Date | Links |
|---|---|---|
| 0.1.0-dev | 2007-Dec-27 |
bgiframe
Last changed: 42 weeks 3 days ago
Helps ease the pain when having to deal with IE z-index issues.
| Version | Date | Links |
|---|---|---|
| 2.1.1 | 2007-Jul-22 |
Browser
Last changed: 11 weeks 5 days ago
jQuery Browser Plugin lets you extend browser detection capabilities and implements CSS browser selectors in jQuery. jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML, allowing you to easily include many components that enrich and benefit the developer's coding experience.
| Version | Date | Links |
|---|---|---|
| 1.0.01-Minified | 2008-Feb-14 | |
| 1.1-Minified | 2008-Feb-21 |
Clipboard
Last changed: 23 weeks 2 days ago
Clipboard is a simple jQuery plugin that allows you to copy text in cross-browser fashion, using Internet Explorer's native method, and a Flash helper in other browsers. Tested with jQuery 1.2+, requires Flash 8+ in non-IE browsers.
Version 2.0 released November 24, 2007
| Version | Date | Links |
|---|---|---|
| 2.0.0 | 2007-Dec-02 |
designMode
Last changed: 19 weeks 2 days ago
Cross-browser designMode
What is designMode?
Almost all major browsers offer a de facto support for rich text editing, which makes an entire DOM document editable. It was originally developed for Internet Explorer, however, later implementations by other browsers are proven to be surprisingly compatible and stable. The functions in this plugin can help you turn any frame, iframe or window into a cross-browser wysiwyg editor.
This technique can be referred to as designMode, because it's triggered by setting the designMode property of a DOM document to 'on' using JavaScript. The content can be modified by a set of commands using the execCommand() function. Mozilla provides a good specification of avalible commands.
| Version | Date | Links |
|---|---|---|
| 2007-Dec-30 |
Fix Overflow
Last changed: 8 weeks 2 days ago
Fixes the horizontal overflow in IE. In particular, IE will place the scroll bar inside the overflowing element, and if the element is only one line, the scroll bar will cover the line.
This plugin will adjust the padding to fix the issue.
| Version | Date | Links |
|---|---|---|
| 1 | 2008-Mar-17 |
History
Last changed: 10 weeks 4 days ago
Plugin is for Ajax-driven pages to have back/forward navigation and to allow bookmarking.
Sample code:
function callback(hash)
{
// do stuff that loads page content based on hash variable
}
$(document).ready(function() {
$.history.init(callback);
$("a[@rel='history']").click(function(){
$.history.load(this.href.replace(/^.*#/, ''));
return false;
});
});| Version | Date | Links |
|---|---|---|
| 1.0.0-beta-1 | 2008-Mar-01 |
ieFixButtons
Last changed: 7 weeks 1 day ago
Fixes the buggy behavior of the <button> element in Internet Explorer 6 and 7.
| Version | Date | Links |
|---|---|---|
| 0.3 | 2008-Mar-25 |
iFixPng - fixes png transparency in msie versions below 7
Last changed: 2 weeks 6 days ago
Fix problems with PNG images in IE6 and below, works for both img-elements and css-background-images, see demo.
| Version | Date | Links |
|---|---|---|
| 1.7 | 2007-Sep-18 |
iPhone
Last changed: 3 weeks 19 hours ago
jQuery iPhone Plugin extends jQuery's functionality for specific iPhone usages.
| Version | Date | Links |
|---|---|---|
| 0.1.2-AIO | 2008-Apr-22 |
jQuery checkbox
Last changed: 16 weeks 4 days ago
A replacement for the standard checkbox that allows you to change the look of checkbox elements in your page.
This simple line of code will change all checkboxes on the page:
$('input[type=checkbox]').checkbox();Plugin has following configuration options:
cls: checkbox wrapper class (default: jquery-checkbox)
empty: path/filename of "empty"(1x1 transparent) image (default: empty.png)
Example:
$('input[type=checkbox]').checkbox({
cls:'jquery-safari-checkbox',
empty: 'http://www.yoursite.com/images/empty.gif'
});| Version | Date | Links |
|---|---|---|
| 0.9.4-Pre-Release | 2008-Jan-17 | |
| 1.0.0 | 2008-Jan-18 |
jQuery Fancy Zoom
Last changed: 8 weeks 1 day ago
Based on the fancy zoom effect : http://www.cabel.name/2008/02/fancyzoom-10.html
This is the jQuery version and peraps better because it is full compatible with:
ie6/7, safari & firefox.
See the jQuery fancy zoom home page for more details.
| Version | Date | Links |
|---|---|---|
| 1.1-v1.1 | 2008-Apr-11 |
Media Queries / Dynamic resolution dependent layouts
Last changed: 6 weeks 6 days ago
The script adds basic Media Query-Support (min-width and max-width in px units ) to all browsers (http://www.w3.org/TR/css3-mediaqueries/). It helps you to create a dynamic resolution dependent layout with webstandards in mind.
| Version | Date | Links |
|---|---|---|
| 1.0.0 | 2008-Mar-27 |
Perciformes (Sons of Suckerfish)
Last changed: 45 weeks 4 days ago
The entire Suckerfish family under one roof. jQuery implementation of (Sons of) Suckerfish. Provides unobtrusive mimicking of :hover, :active, :target and :focus CSS pseudo class for browsers that do not support them.
| Version | Date | Links |
|---|---|---|
| 1.0.2 | 2007-Jun-29 |
pngFix
Last changed: 35 weeks 3 hours ago
This plugin will fix the missing PNG-Transparency in Windows Internet Explorer 5.5 & 6.
| Version | Date | Links |
|---|---|---|
| 1.0.1 | 2007-Jul-03 | |
| 1.0.1 | 2007-Jul-11 | |
| 1.1 | 2007-Sep-12 |
preloadImages
Last changed: 20 weeks 5 days ago
preloadImages makes it easy to preload any image, or a list of images. Just call $.preloadImages(['myimage1.jpg', 'myimage2.jpg']); and it'll do all the work for you - preloading one image at a time. This is controlled via a queue, so images at the start of the queue are preloaded first.
Normal usage:
Add to end of queue and start preloading.
$.preloadImages(['1.jpg', '2.jpg', '3.jpg']);
Add:
Add to end of queue, but don't start preloading.
$.preloadImages.add(['1.jpg', '2.jpg', '3.jpg']);
Prepend:
Prepend to start of queue, but don't start preloading.
$.preloadImages.prepend(['1.jpg', '2.jpg', '3.jpg']);
Clear:
Clear the queue.
$.preloadImages.clear();
Stop:
Stop processing the queue, but don't clear it.
$.preloadImages.stop();
Start:
Start processing the queue.
$.preloadImages.start();
| Version | Date | Links |
|---|---|---|
| 0.1.1 | 2007-Dec-20 |
QinIE - For the proper display of Q tags in Internet Explorer
Last changed: 27 weeks 4 days ago
The purpose of Q tags (defined in HTML 4.0 and W3C DOM Level 1) is to represent quotations more semantically, accessibly, and typographically-correct. Like many things, they haven't caught on because IE didn't support them.
Add this script to the head of your document to automatically sweep the page for Q tags in IE and display them properly (including nested quotes).
When (if) IE supports Q tags in the future, this will have to be updated with a browser version check.
| Version | Date | Links |
|---|---|---|
| 1 | 2007-Nov-03 |
Rule
Last changed: 10 weeks 5 days ago
Important:The release listed below is not the last. Please download 1.0.1 from here.
This plugin allows quick creation/manipulation of CSS Rules, in a "jQuery-way".
It includes features like chaining, iteration using each, selectors with context.
Many functions are available, like slice, pushStack, not, add, remove, append, css, and some more.
A full API is available. It contains the methods of jQuery.Rule, and the extensions to jQuery.
As far as it has been tested, the plugin should perform well in most browsers, some specials methods still need some more testing. Feedback is much appreciated.
| Version | Date | Links |
|---|---|---|
| 0.9.2 | 2007-Nov-23 |
Three state radio button
Last changed: 34 weeks 1 day ago
Allow user to deselect a radio button choiche by clicking it another time
| Version | Date | Links |
|---|---|---|
| 0.1 | 2007-Sep-17 | |
| 0.0.1 | 2007-Aug-28 |
Visited - filter to find visited links
Last changed: 8 weeks 2 days ago
The plugin is written to filter the selector to find visited links.
It does so by plugging in an iframe and inserting all the links of interest and filtering through until it finds all the visited links, using the CSS :visited property.
The plugin also allows you to drop in a function to easily run against each visited link, see documentation and demo.
| Version | Date | Links |
|---|---|---|
| 1 | 2008-Mar-17 |
wkComboBox
Last changed: 8 weeks 5 days ago
Easy to use select replacement, suports AJAX and dinamic content.
Remplazo para selects muy facil de utilizar, soporta Ajax y contenido dinamico, el soporte es 100% en español.
| Version | Date | Links |
|---|---|---|
| 0.2 | 2008-Mar-14 |