Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
1,119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. jquery in master view:
  2. <pre>
  3. <script>
  4. $(".nav li a").click(function(){
  5. $("#content").get("{{URL::route('about')}}");
  6. });
  7. </script>
  8.  
  9. </pre>
  10. route:
  11. <pre>
  12.  
  13.  
  14. Route::get('/about', array(
  15. 'as' => 'about',
  16. 'do' => function(){
  17. return View::make("about.index");
  18. }
  19. ));
  20.  
  21. </pre>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement