Jquery ZeroClipboard not working -
i trying implement 0 clipboard on web mobile application can't make work. can me checking doing wrong? cheers!
html code:
<div class="p_btns" style=""> <input type="hidden" id="copy_field" value="cool"> <div id="btn_copy" class="p_btns_link" >copy referral link</div>
js zclip
<script type="text/javascript"> $("#btn_copy").zclip({ path:'js/zeroclipboard.swf', copy:$("input#copy_field").val(), beforecopy:function(){ $( "#btn_copy" ).animate({ backgroundcolor: "#70c280", color: "#fff", }, 100 ); }, aftercopy:function(){ $( "#btn_copy" ).animate({ backgroundcolor: "#4e798f", color: "#fff", }, 500 ); alert('copied'); } });
unfortunately there zclip not work on ios =/
Comments
Post a Comment