Is there a way to convert twitter bootstrap\'s typeahead function into a $(\"body\").on() function? The following code works fine if the element exists on the p
$(\"body\").on()
I downloaded jquery.livequery.js to get the behavior I wanted:
$("#job_title").livequery("create", function() { $(this).typeahead({ source: searchFunction, onselect: function(obj) { } }); });