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
acrozieracrozier 

Using jquery for a custom popup

I am using the following code to generate a popup off of the accounts page.

 

<apex:page standardController="Account">
<apex:includeScript value="{!URLFOR($Resource.jquery)}"/>
<apex:includeScript value="{!URLFOR($Resource.jalert, 'jquery.alerts.js')}"/>
<apex:stylesheet value="{!URLFOR($Resource.jalert, 'jquery.alerts.css')}"/>





<script type="text/javascript">

    jAlert('<b>Facility:</b> {!Account.Facility_SOPs__c}', 'SOPs');

</script>


</apex:page>

 How can I make this popup to the parent page.  It is currently poping up within it's respective field

SanCloudSanCloud

No Idea.