Last active
January 3, 2016 10:59
Javascript function that creates the iframe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( $('#parameterFrame').length >0 ){ | |
$('#parameterFrame').remove() | |
} | |
var reportId = $v('P100_REPORT_ID') | |
var url = 'f?p=&APP_ID.:200:&SESSION.:&REQUEST.:&DEBUG.:200:P200_REPORT_ID:' + reportId | |
, frame = $( '<iframe></iframe>' | |
, { id : "parameterFrame" | |
, class : "iframe" | |
, frameborder : 0 | |
, src : url | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment