Viewing 3 replies - 1 through 3 (of 3 total)
  • teamGool

    (@teamgool)

    hey, I had this problem in Firefox. I’m no coder but I did some digging and read something about Firefox not supporting the click() event of jquery. After some playing I managed to get it to work in IE and Firefox by changing the following in \plugins\transitions\js\transitions.js:

    Replace:

    $('a').click(function(){
                    $('body').fadeOut();
                     setTimeout("nav('"+this.href+"')",1000);
                   return false;
           });

    With:

    if ($.browser.mozilla) {
                    window.location.href = document.getElementById('a').href(function(){
                    $('body').fadeOut();
                     setTimeout("nav('"+this.href+"')",1000);
                   return false;
           })};

    It’s probably not good code and there may be a better way to do it but it works for me.

    Hi Jose it works in FF and camino but not in safari, there is anyway to make it work?

    thanks

    Hi in load.js file you can change the position of the qoverlay div..
    absolute or relative. line 99
    it should help but it can cause some display small errors..
    it worked for me

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Transitions – AJAX/jQuery Effects] Transitions works but no links clickable.’ is closed to new replies.