How To Call A Function With Params In Iframe After Loading The Iframe In The Pop-up Dynamically Created?
In my app, I am loading search result. while the user click on the print button I would like to create a pop-up. ( this is ok ) But when I create a pop-up, I would like to load my
Solution 1:
You can change the css rules depending on the media used with CSS media types.
For example:
@media print {
body { font-size: 10pt }
}
@media screen {
body { font-size: 13px }
}
@media screen, print {
body { line-height: 1.2 }
}
Post a Comment for "How To Call A Function With Params In Iframe After Loading The Iframe In The Pop-up Dynamically Created?"