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 :)