Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@types/jqueryui

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/jqueryui

Type definitions for jQueryUI 1.9 from https://www.github.com/DefinitelyTyped/DefinitelyTyped

Source
npmnpm
Version
1.9.14-alpha
Version published
Maintainers
1
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 17 May 2016

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