Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

Automatic Selection


Project:Impromptu
Version:1.0
Component:Code
Category:feature request
Priority:normal
Assigned:Unassigned
Status:active
Description

I would like to see the ability to see an option to automatically select a chosen button after a delay of inactivity. For instance:

$.prompt('You are about to delete all selected items. Are you sure you want to continue?', {
  buttons: { Yes: true, No: false },
  default: false,
  timeout: 120,
  callback: function(v, m) {
    if (v == true) {
      // Delete
    }
    else {
      // Cancelled
    }
  }
});