php - Display div content of iframe on top of the screen -
i have created page have 1 button. on clicking of button, showing fancybox popup iframe
.
iframe
has 1 inputbox
. while inputting text, suggests name list auto-complete option. due fixed size of iframe
popup, suggestion list not visible after fixed height , width. auto populating suggestions inherited in iframe
.
so of auto suggested list not visible. it's hidden inside iframe
. want pop outside of iframe
.
please if has solved these types of issue.
thanks in advance.
if have control on iframe , can give greater z-index value auto-compete list iframe fancy box.
or add style overflow:scroll; container holds iframe , set iframe height max
example :
<html> <body> <div style="width:400px; height:400px; overflow:scroll"> <iframe src="http://www.example.com/" style="width:1000; height:1300"></iframe> </div> </body> </html>
Comments
Post a Comment