jQuery addClass example

Change class name on click in jQuery

by irama

HTML

<div class="col-sm-6">
<div class="video-wrapper"><div class="fluid-width-video-wrapper"><iframe src="http://player.vimeo.com/video/91621824" frameborder="0" allowfullscreen="" id="fitvid541540"></iframe></div></div>
</div>

JavaScript

$(function(){

  $('iframe[src^="http://player.vimeo"]').each(function(){
    $(this).attr('src', $(this).attr('src').replace(/^http:/i, 'https:') );
  });

});