Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery select() Method

❮ jQuery Event Methods

Example

Alert a message when a text is selected in a text field:

$("input").select(function(){
  alert("Text marked!");
});
Try it Yourself »

Definition and Usage

The select event occurs when a text is selected (marked) in a text area or a text field.

The select() method triggers the select event, or attaches a function to run when a select event occurs.


Syntax

Trigger the select event for the selected elements:

$(selector).select() Try it

Attach a function to the select event:

$(selector).select(function) Try it

Parameter Description
function Optional. Specifies the function to run when the select event is triggered

❮ jQuery Event Methods