jQuery to move google plus one


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. if(document.getElementById("ys_social_media") == null){
  4. $("#plus_one").css("display","none");
  5. }
  6. else
  7. {
  8. $("#plus_one").css({
  9. "float":"left",
  10. "width":"67px"
  11. });
  12. $("#ys_social_tweet").before(jQuery("#plus_one"));
  13. $("#ys_social_v_separator").clone().appendTo(jQuery("#ys_social_tweet"));
  14. }
  15. });
  16. </script>

URL: http://e-commsolution.com/google-yahoo-store/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.