Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hi Brian,
    I could really use your help on this as I have the same problem. I’m not a programmer but I can muck around in code with some direction. I read the article and it sounds like I’m supposed to put the code below after the jquery call. What I’m not sure about is where to do that with the plugin. Is it in flex-quote-rotator.php or quote-rotator.class.php? And I’m not sure where in there I should paste the info. Any help would be much appreciated:)

    Thanks!
    Lisa

    (function($) {
    $.fn.customFadeIn = function(speed, callback) {
    $(this).fadeIn(speed, function() {
    if(jQuery.browser.msie)
    $(this).get(0).style.removeAttribute(‘filter’);
    if(callback != undefined)
    callback();
    });
    };
    $.fn.customFadeOut = function(speed, callback) {
    $(this).fadeOut(speed, function() {
    if(jQuery.browser.msie)
    $(this).get(0).style.removeAttribute(‘filter’);
    if(callback != undefined)
    callback();
    });
    };
    })(jQuery);

Viewing 1 replies (of 1 total)