Made into an Only Topic: Please only posted in this topic if you are having issues with Youtube videos when you use Internet Explorer and Chrome.
Please use this form:
- Code:
[b]Forum's Link:[/b]
[b]Browser(s) Used:[/b]
[b]Device(s) Used:[/b]
This is a Hitskin.com skin preview
Install the skin • Return to the skin page
[b]Forum's Link:[/b]
[b]Browser(s) Used:[/b]
[b]Device(s) Used:[/b]
APE wrote:can you please post the video here and see if its working
Looks fine to me.Guardian-Angel wrote:Sorry for the double post. Trying it here.
The topic was posted in the wrong section, so I have moved it to the correct section.
|
jucarese wrote:The embed code <iframe> works on google chrome
here give you a good solution:
https://help.forumotion.com/t147139-replace-youtube-tags-with-iframe-tags?highlight=youtube+urls
It works perfect
jQuery(function(){
var ancho = "560";
var alto = "315";
jQuery('.postbody a[href*="youtube.com/watch"]').each(function(){
var ytid = jQuery(this).attr('href').split("v=")[1].split("&")[0];
jQuery(this).html("<iframe width="+ancho+" height="+alto+" src=https://www.youtube.com/embed/"+ytid+" frameborder=0 allowfullscreen></iframe><br>");
});
});