function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Dileep KumarDileep Kumar 

Visualforce Page related problem

Hi All,

I want to display one <div>Content</div> as like popup.But it will display when i will click on <apex:inputtextField />.

How i will do it?

Please help me.

Thanks in advance,

Dileep

Best Answer chosen by Dileep Kumar
Magesh Mani YadavMagesh Mani Yadav
Hi Dileep,

Here is the solution. Please follow the link
http://stackoverflow.com/questions/19064987/html-css-popup-div-on-text-click

All Answers

Magesh Mani YadavMagesh Mani Yadav
Hi Dileep,

Here is the solution. Please follow the link
http://stackoverflow.com/questions/19064987/html-css-popup-div-on-text-click
This was selected as the best answer
Dileep KumarDileep Kumar
<apex:outputLink onclick="openPopup('{!$Page.PageDemo}','somevalue');"> Click </apex:outputLink> <script> function openPopup(page,param){ window.open(page+'?param='+param,'_blank', 'toolbar=yes, scrollbars=yes, resizable=yes, top=500, left=500, width=400, height=400') } </script>