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
Thayalan Guhathashan 11Thayalan Guhathashan 11 

Visualfroce page not working on Internet Explore 11

Hi All,

I have the follwing code makes a long blank page on IE11 and it works fien on other browsers, including Firebox nad chrome. Could you please advise on how to fix & which tag makes the the problem on IE

 <h4 class="row heading"><u>2. Course Detail </u></h4>
                        </div>
    
                        <div class="article">
                        <p>Please select one of the below courses that your school is contracted to deliever</p>
                        </div>
                         <div class="article" >
                        <!-- <apex:inputhidden value="{!objEnrolmentForm.aipt_Course_Start_Date__c}"  id="Start_Date"   />-->
                        
                         <apex:inputText value="{!strSelectedcourse}" id="ID_course" onblur="checkFieldValidation(this.id);"  style="display:none;"  rendered="{!if(objEnrolmentForm.aipt_Product__c!=null,false,true)}"  styleClass="isrequired " />
                          <span class="errorMsg">{!$Label.AIPT_isCourseSelected}</span>
                        </div>
                         <apex:actionregion >
                  <apex:actionFunction name="abc" action="{!checkSelectedValue}" status="idstatus" reRender="InPannel">
                    <apex:param name="abc" value="" assignTo="{!IdSelectvalue}"/>
                  </apex:actionFunction>
                  
                  
                   <apex:actionFunction name="getYear" action="{!calculateEnddate}" status="idstatus1" reRender="endDateId">
                    <apex:param name="getYear" value="" assignTo="{!SelectedyearfromPage}"/>
                  </apex:actionFunction>
                  
                  
                  <apex:actionFunction name="getDate" action="{!calculateEnddate}" status="idstatus2" reRender="endDateId">
                    <apex:param name="getDate" value="" assignTo="{!strSelectedStartDate}"/>
                  </apex:actionFunction>  
                  
                   <apex:actionFunction name="getIntakeName" action="{!displayStartDate}" status="idstatus3" reRender="Start_Date">
                    <apex:param name="getIntakeName" value="" assignTo="{!intakeName}"/>
                  </apex:actionFunction>
                  
                        
                        <div id="no-more-tables">
                        <table class="col-md-12 table-bordered table-condensed2 cf">
                        <thead class="cf">
                        <tr>
                        <th class="numeric">Course Code</th>
                        <th class="numeric">Course Name</th>
                        <th class="numeric">Delivery Method</th>
                        <th class="numeric">Course Cost</th>
                        <th class="numeric">&nbsp;</th>
                        </tr>
                        </thead>

            
Best Answer chosen by Thayalan Guhathashan 11
Rahul KumarRahul Kumar (Salesforce Developers) 
Hi Thayalan Guhathashan,

May I suggest you please refer the below link to reference. Hope it helps.

Please mark it as best answer if the information is informative.

Thanks
Rahul Kumar