Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <div class="bs-example">
  2.  
  3.  
  4. <a href="#videoModal2" target="_blank" class="ga_track wp-read" data-toggle="modal">WATCH VIDEO &nbsp; <span class="next-arrow"></span> <span class="next-arrow"></span></a>
  5.  
  6.  
  7. <!-- Modal HTML -->
  8. <div id="videoModal2" class="modal fade">
  9. <div class="modal-dialog">
  10. <div class="modal-content">
  11. <div class="modal-header">
  12. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  13.  
  14. </div>
  15. <div class="modal-body">
  16. <iframe class="youtubeplayer" width="100%" height="315" src="https://www.youtube.com/embed/..." frameborder="0" allowfullscreen></iframe>
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22.  
  23. $(document).ready(function(){
  24. $('.modal').each(function(){
  25. var src = $(this).find('iframe').attr('src');
  26.  
  27. $(this).on('click', function(){
  28.  
  29. $(this).find('iframe').attr('src', '');
  30. $(this).find('iframe').attr('src', src);
  31.  
  32. });
  33. });
  34. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement