llamar - javascript externo
Cómo reformar un código de JavaScript para joomla? (0)
He creado un archivo php con javascript live search con jQuery pero cuando lo coloco dentro del joomla no responde. He leído sobre ello y encontré que el código debe ser reformado en otra formación. pero no lo entendí correctamente por favor ayúdenme con eso en mi sección html tengo el siguiente código:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script class="include" type="text/javascript" src="assets/js/jquery.dcjqaccordion.2.7.js"></script>
<!--script for this page-->
<script type="text/javascript" src="scripts/triggers.js"></script>
y el código triger como follwoing:
//function of map
function getCountry(value) {
$.post("php/search.php", {
query: value
}, function(data) {
$(''table#resultTable tbody'').html(data);
});
}
//function of textsearchs
$(document).ready(function() {
$(".tablesearch").show();
$.ajax({
type: "POST",
url: "php/search.php",
data: {
query: ''''
},
cache: false,
success: function(html) {
$("table#resultTable tbody").html(html);
}
});
// Search
function search() {
var query_value = $(''input#name'').val();
if (query_value !== '''') {
$.ajax({
type: "POST",
url: "php/search.php",
data: {
query: query_value
},
cache: false,
success: function(html) {
$("table#resultTable tbody").html(html);
}
});
} else {
$(".tablesearch").show();
$.ajax({
type: "POST",
url: "php/search.php",
data: {
query: query_value
},
cache: false,
success: function(html) {
$("table#resultTable tbody").html(html);
}
});
}
return false;
}
// searchall
$("input#name").live("keyup", function(e) {
// Set Timeout
clearTimeout($.data(this, ''timer''));
// Set Search String
var search_string = $(this).val();
// Do Search
if (search_string == '''') {
$(".tablesearch").fadeIn(300);
$(this).data(''timer'', setTimeout(search, 100));
} else {
$(".tablesearch").fadeIn(300);
$(this).data(''timer'', setTimeout(search, 100));
};
});
});
Quiero reformar la función de llamada para que funcionen en Joomla 3
Por favor ayúdame con eso.