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'));
});
we can do that.
Most helpful comment
we can do that.