So after reading this post (Twitter Bootstrap Modal stop Youtube video), I still can't get this solution to work. I've tried verious other methods but still no luck. I guess if my coding isn't so sloppy this would be working.
Any help would be greatly appreciated Thanks all..
<!-- Item line a tin -->
<div class="col-md-4 col-sm-4">
<h3 >How Line a Tin</h3>
<a class="vid-lib"><p><button data-toggle="modal" href="#video-player" onclick="return false;" class="btn btn-primary btn-large"><span><img src="vid/thumb/line_tin.jpg" style="width:100%;"/></span></button></p></a>
<div id="video-player" class="modal fade" style="display: none;">
<div class="video-content">
<div class="video-header">
<a class="close" data-dismiss="modal" style="color: #000000;">X close</a>
<h3 style="color:#f20573;"><span><img src="img/ask_helen.png" style="width:15%;"/></span> How to Line a tin</h3>
</div>
<div class="video-body">
<iframe width="1000" height="600" style="margin: 0 auto;" src="https://www.youtube.com/embed/LtznQ3XI280" frameborder="0" allowfullscreen></iframe>
</div>
<div class="video-footer">
<p>© 2015 Fashionable Fondants. All Rights Reserved</p>
</div>
</div>
</div>
<a href="vid/line_tins.mp4" download="Linning_a_tin" class="btn" style="margin: auto;">Download Tutorial</a>
</div> <!-- End Item -->
<script> jQuery(".modal-backdrop, #video-player .close, #video-player .btn").live("click", function() { jQuery("#video-player iframe").attr("src", jQuery("#video-player iframe").attr("src")); }); </script>