Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <a href="#myModal_addexercise" onclick="addexercise('{{ $workout->name }}', '{{ $workout->workout_id }}'); return false;" role="button" data-toggle="modal" class="btn btn-success">
  2. Add Exercises
  3. </a>
  4.  
  5. <script>
  6. function addexercise(name, workout_id) {
  7. alert(name);
  8. $('#modal-workout-name').html(name);
  9. }
  10. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement