Outils pour utilisateurs

Outils du site


informatique:javascript:jquery

Ceci est une ancienne révision du document !


JQuery

Documentation

Plugins

jQuery Plugins (by malsup): BlockUI Plugin, Corner Plugin, Cycle Plugin, Feed Plugin, Form Plugin, HoverPulse Plugin, Media Plugin, Taconite Plugin, Twitter Search Plugin.

15 Great jQuery Plugins For Better Table Manipulation

SimpleModal

http://www.ericmmartin.com/projects/simplemodal/

SimpleModal is a lightweight jQuery Plugin which provides a powerful interface for modal dialog development. Think of it as a modal dialog framework. SimpleModal gives you the flexibility to build whatever you can envision, while shielding you from related cross-browser issues inherent with UI development.

jQuery-Validation-Engine

Jeditable

Jeditable - Edit In Place Plugin For jQuery.

http://www.appelsiini.net/projects/jeditable

$(document).ready(function() {
     $('.edit').editable('http://www.example.com/save.php');
});

DataTables

http://www.datatables.net/

DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table. Key features:

  • Sorting, type detection, API functions, pagination and filtering
  • Display data from almost any data source. DOM, Javascript array, Ajax file and server-side processing (PHP, C#, Perl, Ruby, AIR, Gears etc). Ajax auto loading of data
  • Rock solid - backed by a suite of 1400+ unit tests. It's free!
  • Wide variety of plug-ins: TableTools, FixedColumns, KeyTable and more via extensive plug-in support
  • State saving. Dynamic creation of tables. Custom DOM positioning. Non-destructive DOM interaction
  • Fully themeable by CSS
$(document).ready(function() {
  $('#theTable').dataTable();
});

Tips

Accordion

http://jqueryui.com/demos/accordion/

If you want multiple sections open at once, don't use an accordion !

An accordion doesn't allow more than one content panel to be open at the same time, and it takes a lot of effort to do that. If you are looking for a widget that allows more than one content panel to be open, don't use this. Usually it can be written with a few lines of jQuery instead, something like this:

jQuery(document).ready(function(){
	$('.accordion .head').click(function() {
		$(this).next().toggle();
		return false;
	}).next().hide();
});

Or animated:

jQuery(document).ready(function(){
	$('.accordion .head').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});
informatique/javascript/jquery.1305276005.txt.gz · Dernière modification : 19/05/2012 00:15 (modification externe)

Sauf mention contraire, le contenu de ce wiki est placé sous les termes de la licence suivante : CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki