identifier
1. identifier is used to write down notes of animations, actions and anything we find important to make note of
    identifier is a visual reference
2. identifier also provides a quick overview of the function structure flow
STRUCTURE: function (e) {  javascript before - (setup holder-frame-click) - append - javascript after  }

url
set url for iFrame content
•••• var: string

id
set an id for div holder

NOTE: set an unique id for each
•••• var: string

name
set a name for frame
•••• var: string

class
set a class for frame
•••• var: string

position
set position for div holder
•••• var: string

left
set left position for div holder
•••• var: string

top
set top position for div holder
•••• var: string

width
set width for div holder + frame
•••• var: string

height
set height for div holder + frame + click
•••• var: string


float
set float behavior for div holder
•••• var: string

scroll
enable window scroll for frame
false       =   scrolling='no'
true        =   scrolling='yes'
if needed   =   if needed


z-index
set z-index for div holder
•••• var: string

appendTo | selector
append, add frame to this selector  ( ie. append to  document  body  or to an  object )
•••• var: string

run on load
run on load enables or disables this module to run on page load

run on call
run on call is the function name we can give this current function
we can call this function to occur ie. by using a    callback | function
for an in depth on callback and run on call see here

code modification | click
enable iframe to be clickable, by adding an overlay  (div click id = suffix Id_cl     ie. #jorFrame_1_cl)
•••• var: non-string

code modification | allowtransparency
set allow transparency for IE
NOTE: set target css background-color to transparent

code modification | variable
add function variables  ie.  Call_Frame_1(myVariable)
this function is beyond the scope of this manual   see here

code modification | javascript | after
add javascript, further enhancing this function by adding custom code
this function is beyond the scope of this manual   see here

code modification | javascript | before
add javascript, further enhancing this function by adding custom code
this function is beyond the scope of this manual   see here
__________________________________________________________________________
more info on   module | iframe   see here Overview
MODULE IFRAME - PROPERTIES
TOOL