728x90

Example

Alert a text when an <input> field is changed:

$("input").change(function(){
    alert("The text has been changed.");
});
Try it Yourself »

Definition and Usage

The change event occurs when the value of an element has been changed (only works on <input>, <textarea> and <select> elements).

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

Note: For select menus, the change event occurs when an option is selected. For text fields or text areas, the change event occurs when the field loses focus, after the content has been changed.


Syntax

Trigger the change event for the selected elements:

$(selector).change()Try it

Attach a function to the change event:

$(selector).change(function)Try it


ParameterDescription
functionOptional. Specifies the function to run when the change event occurs for the selected elements



jQuery Change 이벤트에서 input, textarea 에서 change 가 trigger 되는 경우는, 해당 박스의 데이터가 바뀌고 나서 포인터가 다른곳으로 눌러졌을때 발동된다. (즉 그 칸안에 있으면 안된다는 소리다)

+ Recent posts