Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • esdigital Friend
    #156879

    Hi,

    I would like to be able to click on the image on the left and be brought to the url that is associated with that set within the module parameters. Currently clicking on the right text will bring me to the link, but the image doesn’t click.

    I tried the suggestion in this http://bit.ly/hajpLi thread, but it doesn’t seem to work. All thats happening now is the arrows on the left and right of the slideshow aren’t working.

    Suggestions?

    esdigital Friend
    #364697

    Anyone???????

    Sherlock Friend
    #364762

    Dear esdigital,

    You can just try as following
    Go to the file of modulesmod_jaslideshow2assetsscript.js,Looking for this codes
    [PHP] if (this.options.urls) {
    this.maskDesc.addEvent(‘click’, function () {
    // URL
    var url = this.options.urls;
    if (url) {
    var target = this.options.targets;
    switch(target){
    case “_blank”:{
    window.open(url, “newWindow”);
    break;
    }
    default:{
    window.location.href = url;
    break;
    }
    }
    }
    // Target of URL

    }.bind(this));
    }[/PHP] Change it to
    [PHP] if (this.options.urls) {
    this.els.addEvent(‘click’,function () {

    // URL
    var url = this.options.urls;

    if (url) {
    var target = this.options.targets;
    switch(target){
    case “_blank”:{
    window.open(url, “newWindow”);
    break;
    }
    default:{
    window.location.href = url;
    break;
    }
    }
    }
    // Target of URL

    }.bind(this));

    this.maskDesc.addEvent(‘click’, function () {
    // URL
    var url = this.options.urls;
    if (url) {
    var target = this.options.targets;
    switch(target){
    case “_blank”:{
    window.open(url, “newWindow”);
    break;
    }
    default:{
    window.location.href = url;
    break;
    }
    }
    }
    // Target of URL

    }.bind(this));
    }[/PHP] I think that would help image to be linkable !

Viewing 3 posts - 1 through 3 (of 3 total)

This topic contains 3 replies, has 2 voices, and was last updated by  Sherlock 13 years, 11 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum