Buenas como el titulo lo dice ^^
Este es mi codigo
Código Javascript
:
Ver original<script type="text/javascript">
$(function() {
$(".search_button").click(function() {
// getting the value that user typed
var searchString = $("#search_box").val();
// forming the queryString
var data = 'search='+ searchString;
// if searchString is not empty
if(searchString) {
// ajax call
$.ajax({
type: "POST",
url: "rpc.php",
data: data,
beforeSend: function(html) { // this happens before actual call
$("#results").html('');
$("#searchresults").show();
$(".word").html(searchString);
},
success: function(html){ // this happens after we get results
$("#results").show();
$("#results").append(html);
}
});
}
return false;
});
});
function fill(thisValue) {
$('#titulo_id').val(thisValue);
setTimeout("$('#suggestions').hide();", 200);
}
</script>
Código HTML:
Ver original<input type="text" name="search" id="search_box" class='search_box'/> <input type="submit" value="Search" class="search_button" /><br /> <input name="titulo_id" value=" " id="titulo_id" onblur="fill();" class="text-input"/>>
<br /> <div id="searchresults" >Search results for
<span class="word"></span></div> <ul id="results" class="update">
BUeno aca les dejo el codigo me permite buscar titulo en la base de datos con PHP y al hacer click en el div del buscador el titulo ingresa al otro input "titulo_id" lo que yo kiero hacer es q' cuando haga click en titulo buscado tambien se cierre el div del buscador.
Saludos y gracias