yesamarcos

Untitled

Jul 30th, 2015
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. // Inserindo uma function js na página
  2. function buscar_registros() { ?>
  3. <script type="text/javascript">
  4. jQuery(document).ready(function($){
  5.  
  6. $(".buscando").on('click', function( eve ){
  7.  
  8. eve.preventDefault();
  9. var buscando = $('.buscando').val();
  10.  
  11. $.ajax({
  12. url: "<?php bloginfo('template_url'); ?>/funcoes.php",
  13. data: { buscando: buscando },
  14. type: "POST",
  15. dataType: "html",
  16. success: function(data){
  17.  
  18. $("#resultado_pesquisa").html(data);
  19. $("#resultado_pesquisa").removeClass("esconder");
  20.  
  21. }
  22.  
  23. });
  24.  
  25. });
  26.  
  27. });
  28. </script>
  29. <?php }
  30. add_action( 'wp_head', 'buscar_registros' );
Advertisement
Add Comment
Please, Sign In to add comment