I'm not sure what you are talking about. Are you talking about a
specific jQuery plug-in?
Or a HTML select drop-down?

If you're talking about a HTML select, then an onchange event will do
what you want.

$("select").change(function() {
    alert( $(this).val() );
});

On Oct 14, 10:24 am, eka <ekagauranga...@gmail.com> wrote:
> Hi
>
> Is there anyway to pass a callback to the options to be called when an
> option is selected?
>
> Regards
>
> Eka

Reply via email to