jury89
jury89

Reputation: 302

Jquery mobile: Select menus events

I'm developing a mobile site and i need to do an ajax call when an user close a select menu. i can't find the right event (something to know when the user close the select menu). can someone help me?

Upvotes: 1

Views: 1148

Answers (1)

Chris Kooken
Chris Kooken

Reputation: 33870

The Blur event would be your best option in this case.

$("#mylist").blur(function(e){
//do stuff
});

Upvotes: 2

Related Questions