Поскольку ваши библиотеки находятся вне папки application
, вы можете получить к ней доступ с помощью baseurl
.
То есть absolute path
для вашего library
:
echo site_url("/lib/jQueryLiveSearch/core/jQueryLiveSearch.php");
В AJAX Live Search
плагине нужно указать url
в jQuery Options
jQuery(".mySearch").ajaxlivesearch({
loaded_at: <?php echo time(); ?>,
token: <?php echo "'" . $handler->getToken() . "'"; ?>,
max_input: <?php echo Config::getConfig('maxInputLength'); ?>,
url: <?php echo (APPPATH."/third_party/jQueryLiveSearch/core/AjaxProcessor.php"); ?>
onResultClick: function(e, data) {
// get the index 1 (second column) value
var selectedOne = jQuery(data.selected).find('td').eq('1').text();
// set the input value
jQuery('#ls_query').val(selectedOne);
// hide the result
jQuery("#ls_query").trigger('ajaxlivesearch:hide_result');
},
onResultEnter: function(e, data) {
// do whatever you want
// jQuery("#ls_query").trigger('ajaxlivesearch:search', {query: 'test'});
},
onAjaxComplete: function(e, data) {
}
});