javascript - How to disable onload on this js -
i'd disable onload popup , show after clicking url link (onlick="echosec()" ). did 2nd step, after pressing button works good, shows @ page load too. don't want that. there no onload function in code. me?
/* * project: jquery echosoc - social sharer init * description: echosoc light weight jquery plugin social shares. * author: dvl-den * license: copyrights dvl-den. rights reserved. */ ;(function ($, window, document, undefined) { // create defaults once var pluginname = 'echosoc'; var defaults = { title : 'echosoc social sharer', facebook_button : true, facebook_url : window.location.origin, twitter_button : true, twitter_url : window.location.origin, twitter_message : 'echosoc social sharer tweet message!', google_button : true, google_url : window.location.origin, timeout : 30, message : 'like, tweet or +1 unlock content', reopen_task : false, reopen_time : 60, cookie_expire : 30, close : false }; // actual plugin constructor function echosoc(element, options) { this.element = element; this.options = $.extend({}, defaults, options); this._defaults = defaults; this._name = pluginname; this.init(); } echosoc.prototype = { init: function () { // plugin html structure $('body').append( //--> '<div class="echosoc_wrap">' + '<div class="echosoc_frame">' + '<div class="echosoc_title" />' + '<div class="echosoc_content">' + '<div class="echosoc_description" />' + '<div class="echosoc_countdown" />' + '</div>' + '</div>' + '<div class="echosoc_overlay" />' + '</div>' // <-- ); // title text or image $('.echosoc_title').html(this.options.title); // countdown structure if (this.options.timeout > 0) { $('.echosoc_countdown').html(this.options.message + ' or wait <span />' + ' ' + 'seconds.'); } else { $('.echosoc_countdown').html(this.options.message); } $('<div />') .addclass('echosoc_buttons') .appendto('.echosoc_description'); this._echotrigger(); if (this.options.timeout > 0) this._echotimeout(); if (this.options.close) { $(document).on('keydown', function (e) { if (e.keycode == 27) { $('.echosoc_wrap').fadeout(); } }); $('.echosoc_overlay').css('cursor', 'pointer'); $('.echosoc_overlay').on('click', function () { $('.echosoc_wrap').fadeout(); }); } }, _echotrigger: function () { if (!$.cookie('echosoc')) { $('.echosoc_wrap').show(); $('.echosoc_frame').fadein(500); $('.echosoc_overlay').fadein(100); this._echocenter(); this._echoswitcher(); this._echoasync(); this._echoevents(); } }, _echoswitcher: function () { if (this.options.facebook_button) { $('<div />') .addclass('echofacebook') .css({ 'width': '48', 'height': '20' }) .appendto('.echosoc_buttons'); $('.echofacebook').append('<fb:like href="' + this.options.facebook_url + '" send="false" layout="button_count" width="50" show_faces="false" colorscheme="light"></fb:like>'); } if (this.options.twitter_button) { $('<div />') .addclass('echotwitter') .css('width', '58') .appendto('.echosoc_buttons'); $('.echotwitter').append('<a href="https://twitter.com/share" class="twitter-share-button" data-lang="en" data-url="' + this.options.twitter_url + '" data-text="' + this.options.twitter_message + '">tweet</a>'); } if (this.options.google_button) { $('<div />') .addclass('echogoogle') .css('width', '32') .appendto('.echosoc_buttons'); $('.echogoogle').append('<g:plusone size="medium" href="' + this.options.google_url + '" callback="googlecb"></g:plusone>'); } var socbuttons = $('.echosoc_buttons').find('div').length, socnumber = $.trim(socbuttons).slice(0, 1), socsort_one = $('.echosoc_buttons > div').eq(0), socsort_two = $('.echosoc_buttons > div').eq(1), socsort_three = $('.echosoc_buttons > div').eq(2), buttons_wrap = $('.echosoc_buttons'); if (socnumber == 3) { buttons_wrap.css('width', '85%'); socsort_one.add(socsort_three).css('display', 'inline-block'); socsort_one.add(socsort_three).css({ 'position': 'absolute', 'top': '10px', 'overflow': 'hidden' }); socsort_two.css({ 'position': 'relative', 'margin': '0 auto', 'overflow': 'hidden' }); socsort_one.css({ 'left': '0' }); socsort_three.css({ 'right': '0' }); } else if (socnumber == 2) { buttons_wrap.css('width', '50%'); socsort_one.add(socsort_two).css('display', 'inline-block'); socsort_one.add(socsort_two).css({ 'position': 'absolute', 'top': '10px', 'overflow': 'hidden' }); socsort_one.css({ 'left': '0' }); socsort_two.css({ 'right': '0' }); } else if (socnumber == 1) { buttons_wrap.css('width', '50%'); socsort_one.css({ 'position': 'relative', 'margin': '0 auto', 'overflow': 'hidden' }); } else { buttons_wrap .css('text-align', 'center') .text('error! enable @ least 1 social button!'); } }, _echotimeout: function () { $('.echosoc_countdown') .find('span') .addclass('timer') .text(this.options.timeout); var countdown = $('.timer'), seconds = $('.timer').text(), = this, timer = setinterval(function () { countdown.text(--seconds); if (seconds === 0) { clearinterval(timer); that._echoclose(); } }, 1000); }, _echodestroy: function () { $('.echosoc_wrap').fadeout(500); }, _echoclose: function () { this._echodestroy(); if (this.options.reopen_task) { var = this; settimeout(function () { $('.echosoc_wrap').fadein(500); that._echotimeout(); that._echocenter(); }, this.options.reopen_time * 1000); } }, _echocenter: function () { function reposition () { var str_wrap = $('.echosoc_wrap'), str_frame = $('.echosoc_frame'); str_frame.css({ top: math.round( str_wrap.height() / 2 - str_frame.outerheight() / 2 - parseint(str_frame.css('margin-top'), 10) ), left: math.round( str_wrap.width() / 2 - str_frame.outerwidth() / 2 - parseint(str_frame.css('margin-left'), 10) ) }); } if ( $('.echosoc_wrap').length ) { reposition(); $(window).on('resize', function () { reposition(); }); } }, _echoasync: function () { if (this.options.twitter_button) { if (typeof (twttr) != 'undefined') { twttr.widgets.load(); } else { $.getscript('http://platform.twitter.com/widgets.js', function () { twttr.ready(function (twttr) { twttr.events.bind("tweet", twittercb); }); }); } } if (this.options.facebook_button) { if (typeof (fb) != 'undefined') { fb.init({ status: true, cookie: true, xfbml: true }); } else { $.getscript("http://connect.facebook.net/en_us/all.js#xfbml=1", function () { fb.init({ status: true, cookie: true, xfbml: true }); }); } } if (this.options.google_button) { if (typeof (gapi) != 'undefined') { $(".g-plusone").each(function () { gapi.plusone.render($(this).get(0)); }); } else { $.getscript('https://apis.google.com/js/plusone.js'); } } }, _echoevents: function () { var cookie_sum = parseint(this.options.cookie_expire, 10); window.fbasyncinit = function () { fb.event.subscribe('edge.create', function(response) { if (cookie_sum >= 1) { $.cookie('echosoc', 'done', { expires: cookie_sum , path: '/' }); } $('.echosoc_wrap').fadeout(500, function () { $('.echosoc_wrap').remove(); opengatewayacapi(8978, '76276') }); }); }; googlecb = function() { if (cookie_sum >= 1) { $.cookie('echosoc', 'done', { expires: cookie_sum , path: '/' }); } $('.echosoc_wrap').fadeout(500, function () { $('.echosoc_wrap').remove(); opengatewayacapi(8978, '76276') }); }; twittercb = function () { if (cookie_sum >= 1) { $.cookie('echosoc', 'done', { expires: cookie_sum , path: '/' }); } $('.echosoc_wrap').fadeout(500, function () { $('.echosoc_wrap').remove(); opengatewayacapi(8978, '76276') }); }; } }; $.fn[pluginname] = function (options) { return this.each(function () { if (!$.data(this, "plugin_" + pluginname)) { $.data(this, "plugin_" + pluginname, new echosoc(this, options)); } }); }; })(jquery, window, document);
<a href="" onclick="echosoc()" class="box_single_ability">
and js included in index.html file
<script> $(document).echosoc({ title : '<h3>title</h3>', facebook_button : true, facebook_url : 'https://www.facebook.com/', twitter_button : true, twitter_url : 'twitterurl/', twitter_message : 'checking out jquery echosoc plugin social sharing @nenad_novakovic (dvlden).', google_button : true, google_url : 'googleurl/', timeout : 2, message : 'like, tweet or +1 unlock content', reopen_task : false, reopen_time : 1, cookie_expire : 30, close : false }); </script>
it has when this.echotrigger();
being called. so, either remove init
(not sure if that's behaviour want), or don't initialization step (the html snippet posted) until click happens. init being called
Comments
Post a Comment