NOTICE: FORUMS MOVING
Thank you for visiting and participating in the Video.js forums. We are currently moving the forums to Stack Overflow and GitHub Issues. If you have a question or need help with Video.js, please post your question on Stack Overflow and add the tag 'video.js'. If you've found a specific bug in Video.js, please submit it in the issues tracker.
Javascript error in IE8
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2;
WOW64; Trident/4.0)
Timestamp: Sun, 29 May 2011 19:43:25 UTC
Message: Invalid argument.
Line: 716
Char: 7
Code: 0
URI: http://10.0.0.9/javascript/video-js/video.js
Showing the most recent page of comments. View the first page
32 Posted by Balaji on 28 Mar, 2013 11:04 AM
In the videojs javacript file search for el.style.width=initWidth+"px" and replace it with el.style.width=initWidth.indexOf('%') !== -1 ? initWidth : initWidth+"px";
Similarly search for el.style.height=initHeight+"px" and replace it with el.style.height = initHeight.indexOf('%') !== -1 ? initHeight : initHeight+"px";
I found the fix from Stackoverflow website - http://stackoverflow.com/questions/14603787/video-js-for-wordpress-...