if (input.autocomplete("widget").is(":visible")) {
input.autocomplete("close");
removeIfInvalid(input);
return;
}
// work around a bug (likely same cause as #5265)
$(this).blur();
// pass empty string as value to search for, displaying all results
input.autocomplete("search", "");
input.focus();
});
input
.tooltip({
position: {
of: this.button
},
tooltipClass: "ui-state-highlight"
});
},
destroy: function() {
this.wrapper.remove();
this.element.show();
$.Widget.prototype.destroy.call(this);
}
});
})(jQuery);
$(function() {
$("#ddlMcode").combobox();
});
</script>
</form>
</body>
my combobox work fine, but currently the change event fired after i move the focus out from combobox, how to fire the change event when my selected item change? kindly advise. thanks.
any one here familiar with GALLERIFFIC? i try insert my own hyperlink in slideshow container instead of ‘next image’, user may go to my own link when click on the large image, what should i edit?