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.

  1. if have control on iframe , can give greater z-index value auto-compete list iframe fancy box.

  2. 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

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

asp.net - Razor Page Hosted on IIS 6 Fails Every Morning -

c++ - wxwidget compiling on windows command prompt -