Am o mica - mare problema si tot nu am reusit sa o rezolv. Am acest cod:
Cod: Selectaţi tot
// Start Ready
$(document).ready(function() {
$('#results_r').html('Bine ai venit');
// Icon Click Focus
$('div.icon').click(function(){
$('input#search').focus();
});
// Live Search
// On Search Submit and Get Results
function search() {
var query_value = $('input#search').val();
$('b#search-string').html(query_value);
if(query_value !== ''){
$.ajax({
type: "POST",
url: "search.php",
data: { query: query_value },
cache: false,
success: function(html){
$("ul#results").html(html);
}
});
}return false;
}
$("input#search").live("keyup", function(e) {
// Set Timeout
clearTimeout($.data(this, 'timer'));
// Set Search String
var search_string = $(this).val();
// Do Search
if (search_string == '') {
$("ul#results").fadeOut();
$('h4#results-text').fadeOut();
$('h4#results_r').fadeIn();
}else{
$("ul#results").fadeIn();
$('h4#results-text').fadeIn();
$('h4#results_r').fadeOut();
$(this).data('timer', setTimeout(search, 100));
};
});
});
Problema este urmatoarea:
Cum se vede am un mesaj de "intampinare" declarat asa:
Cod: Selectaţi tot
$('#results_r').html('Bine ai venit');
Cod: Selectaţi tot
$('h4#results_r').fadeOut();
Cod: Selectaţi tot
$('h4#results_r').fadeIn();
Cum asi putea sa fac asa ceva?
Astept raspuns. Multumesc anticipat. cu stima Trif.