I\'m using jQuery tools for an overlay. Inside the overlay I have an HTML5 video. However, when I close the overlay, the video keeps playing. Any idea how I might get the vi
Try this:
if ($.browser.msie) { // Some other solution as applies to whatever IE compatible video player used. } else { $('video')[0].pause(); }
But, consider that $.browser is deprecated, but I haven't found a comparable solution.