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:
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.Ver original
Saludos y gracias