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.

readonly


readonly is a plugin I'm working on to prevent user interaction with any element on a page. The original cause was from a select box I wanted to have as readonly, but still get sent on form submit.

This readonly feature can, (in theory), be used on any HTML element, ranging from select boxes, input boxes, buttons, anchors, etc...

Example Usage:

// Will make 'class="myelement"' objects readonly
$('.myelement').readonly(true);

// Will make any input inside of the div 'shipping' not readonly, ie: undo the readonly operation.
$('div.shipping :input').readonly(false);

Checkout the source at https://svn.powelltechs.com/jquery.readonly/trunk

Downloads

Recommended releases

Version Downloads Date Links
0.7.0 Notes

Other releases

Version Downloads Date Links
1.0.0-beta1 Notes


5
Your rating: None Average: 5 (3 votes)

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.