Organizr: Feature: double-click tab icon in menu to reload target/iframe.

Created on 21 Mar 2017  路  1Comment  路  Source: causefx/Organizr

Something like:

$("li[class^='tab-item']").dblclick(function(){
    var thisidfull = $(this).attr("id");
    var thisid = thisidfull.substr(0, thisidfull.length-1);
    var thisframe = $("#content div[data-content-url^='"+thisid+"']").children('iframe');
    $(thisframe).attr('src', $(thisframe).attr('src'));
});

Most helpful comment

we can do that.

>All comments

we can do that.

Was this page helpful?
0 / 5 - 0 ratings