[ Video Sharing CMS v4 ] Implement share buttons and "embed code" in default theme

Started by TigerClaw,

Previous topic - Next topic

0 Members and 3 Guests are viewing this topic.

TigerClawTopic starter

I searched the forum but I can't find it.
How I can implement share buttons and the "embed code" button in the default theme?

Thanks
  •  

PHPVibe A.

Hi,

Html for the button

<a id="embedit" href="javascript:void(0)" class="tipW" title="Embed video"><i class="icon-youtube-play"></i> Embed Code</a>



Jquery:

$("#embedit").click(function(){
    $(".video-share").toggleClass('hide');
  });


And the class add
<div class="video-share">   
to
<div class="video-share hide">   

Similar topics (7)