Socket
Socket
Sign inDemoInstall

jquery-ui-dist

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jquery-ui-dist

A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.


Version published
Weekly downloads
169K
decreased by-3.64%
Maintainers
1
Weekly downloads
 
Created

What is jquery-ui-dist?

The jquery-ui-dist package is a distribution of jQuery UI, a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. It provides a wide range of functionalities to enhance the user experience of web applications.

What are jquery-ui-dist's main functionalities?

Draggable

The Draggable feature allows elements to be moved using the mouse. The code sample initializes the draggable functionality on an element with the ID 'draggable'.

$( function() { $( '#draggable' ).draggable(); } );

Droppable

The Droppable feature enables elements to be used as drop targets. The code sample makes an element with the ID 'droppable' a drop target and changes its appearance when an element is dropped onto it.

$( function() { $( '#draggable' ).draggable(); $( '#droppable' ).droppable({ drop: function( event, ui ) { $( this ).addClass( 'ui-state-highlight' ).find( 'p' ).html( 'Dropped!' ); } }); } );

Resizable

The Resizable feature allows elements to be resized by dragging their edges or corners. The code sample initializes the resizable functionality on an element with the ID 'resizable'.

$( function() { $( '#resizable' ).resizable(); } );

Sortable

The Sortable feature enables a list of elements to be sorted using the mouse. The code sample initializes the sortable functionality on an element with the ID 'sortable' and disables text selection to improve the user experience.

$( function() { $( '#sortable' ).sortable(); $( '#sortable' ).disableSelection(); } );

Accordion

The Accordion feature creates a collapsible content panel. The code sample initializes the accordion functionality on an element with the ID 'accordion'.

$( function() { $( '#accordion' ).accordion(); } );

Datepicker

The Datepicker feature provides a calendar interface for selecting dates. The code sample initializes the datepicker functionality on an input element with the ID 'datepicker'.

$( function() { $( '#datepicker' ).datepicker(); } );

Other packages similar to jquery-ui-dist

FAQs

Package last updated on 26 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc