Guest User

Untitled

a guest
Jun 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. $(document).ready(function(){
  2. $('.sub_menu').click(function()
  3. {
  4. $('#centro_painel').load('paginas/'+this.id+'.php');
  5. },
  6. $('#cadastrar_cardapio').submit(function(){
  7. $.ajax({
  8. type: 'POST',
  9. url: $('#cadastrar_cardapio').attr('action'),
  10. data: $('#cadastrar_cardapio').serialize(), // I WANT TO ADD EXTRA DATA + SERIALIZE DATA
  11. success: function(data){
  12.  
  13. $('.destino').html(data);
  14. }
  15. });
  16. return false;
  17. });
  18. );
  19.  
  20. });
Add Comment
Please, Sign In to add comment