vote up 0 vote down star

Hi,

I am using this jQuery plugin for text blink http://plugins.jquery.com/project/blink

But I don't know how to modify it to do a .stopblink()

Can someone help?

Tanks

flag

45% accept rate

2 Answers

vote up 0 vote down

Is a pretty small plugin, ~20 lines, I refactored a bit:

Now I'm using an internal object to keep track of the setInterval timerIDs per selector, for being able to re-start the timer, in case the plugin is called more than one time using the same selector, and being able to stop it.

I'm changing the visibility of the matched elements at once, the $.each wasn't necessary on the original code.

Added a stopBlink method.

(function($) {
  var blinkTimers = {}; // object to track timers per selector

  $.fn.blink = function(options) {
    var defaults = { delay:500 },
        options = $.extend(defaults, options),
        $el = this;

    if (blinkTimers[this.selector]) { // check if 'blink' has been called before
      clearInterval(blinkTimers[this.selector]); // and clear the timer if so
    }

    blinkTimers[this.selector] = setInterval(function () { // store the timerId
      var vis = $el.css('visibility'); // toggle visibility
      $el.css('visibility', vis == 'hidden' ? 'visible' : 'hidden');
    }, options.delay);

    return this; // return this for method chainability
  };

  $.fn.stopBlink = function () {
    this.css('visibility', 'visible'); // restore element visibility
    clearInterval(blinkTimers[this.selector]); // clear the timer
    return this;  // return 'this' method chainability
  };
}(jQuery));

Try it out here.

link|flag
vote up 0 vote down

You could attach another method to the plugin that does a clearInterval() on the setInterval() that is used to toggle the visibility CSS property.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.