Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/jqueryui

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/jqueryui

TypeScript definitions for jQueryUI

  • 1.12.12
  • ts2.9
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
203K
decreased by-0.23%
Maintainers
1
Weekly downloads
 
Created

What is @types/jqueryui?

@types/jqueryui provides TypeScript type definitions for the jQuery UI library, enabling developers to use jQuery UI with TypeScript, ensuring type safety and better development experience.

What are @types/jqueryui's main functionalities?

Draggable

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

 $("#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 item is dropped on it.

 $("#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 makes an element with the ID 'resizable' resizable.

 $("#resizable").resizable();

Sortable

The Sortable feature enables a list of elements to be sorted by dragging and dropping. The code sample makes an element with the ID 'sortable' sortable.

 $("#sortable").sortable();

Accordion

The Accordion feature creates a collapsible content panel. The code sample makes an element with the ID 'accordion' into an accordion widget.

 $("#accordion").accordion();

Other packages similar to @types/jqueryui

FAQs

Package last updated on 13 May 2020

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