Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <ul>
  2. <li id="divContentOne"> (each id has the same name of the view, so
  3. the first li has to load divContentOne.blade.php)
  4. </li>
  5. ...
  6. ...
  7. a lot of li
  8. ...
  9. </ul>
  10.  
  11. <div id="toload">
  12.  
  13. </div>
  14.  
  15. <script> ul.addEventListener('click', function(e) {
  16. Id = e.target.id;
  17. asyncFunc();
  18. });
  19. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement