Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Inserindo uma function js na página
- function buscar_registros() { ?>
- <script type="text/javascript">
- jQuery(document).ready(function($){
- $(".buscando").on('click', function( eve ){
- eve.preventDefault();
- var buscando = $('.buscando').val();
- $.ajax({
- url: "<?php bloginfo('template_url'); ?>/funcoes.php",
- data: { buscando: buscando },
- type: "POST",
- dataType: "html",
- success: function(data){
- $("#resultado_pesquisa").html(data);
- $("#resultado_pesquisa").removeClass("esconder");
- }
- });
- });
- });
- </script>
- <?php }
- add_action( 'wp_head', 'buscar_registros' );
Advertisement
Add Comment
Please, Sign In to add comment