I\'m trying to use the Jquery UI autocomplete plugin, and i\'d like to render some html in the suggest box, with clickable links. The html seems to render ok, however when I cl
Im guessing that you have already found a solution for it, but better late then never.
I know this isn´t the optimal solution, but it works.
$(".yourLink").live('click', function () {
var yourLinkHref= $(this).attr('href');
window.location = yourLinkHref;
});
Hope it helps :)
I can find no evidence that this is doable without monkey patching a large part of jquery. YUI3 works spectaculary well, however. No monkeying around necessary
http://developer.yahoo.com/yui/3/autocomplete/