Guest User

Untitled

a guest
May 27th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <ul class="nav">
  2. <li class="active controls_menu">
  3. <a href="content_pizza.php" id="" class="change-content">
  4. <i class="glyphicon glyphicon-th-list"></i>Tabela de Pizzas </a>
  5. </li >
  6. <li class ="controls_menu">
  7. <a href="thumbls_pizza.php" id="" class="change-content">
  8. <i class="glyphicon glyphicon-picture"></i>Ver todas Pizzas </a>
  9. </li>
  10.  
  11. $(document).ready(function() {
  12. $("#apresenta_pizza").load("content_pizza.php");
  13. $('.change-content').click(function() {
  14. $("#apresenta_pizza").load($(this).attr('href'));
  15. return false;
  16. });
  17. });
Add Comment
Please, Sign In to add comment