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
SFDC_LearnerSFDC_Learner 

Tabs and Tabpanels are not working

Hi

 

I am using following Code.

 

<apex:page sidebar="false">
<apex:form >
<apex:tabPanel >
<apex:tab title="Tab1">
Tab1
</apex:tab>
<apex:tab title="Tab2">
Tab2
</apex:tab>
</apex:tabPanel>
<c:VFAttachmentSlider RecordId="a0190000007m4ys"/>
</apex:form>
</apex:page>

 

 

 

In "VFAttachmentSlider" Component i have included few jQuery releated files to design slider. When i am commecting those Jquery libraries then tabs are working fine. When i use jQuery then tabs are not working..

 

Any ideas!

Vishal_ThoriyaVishal_Thoriya
Add following code snippet in your VF page.

&lt;script type="text/javascript" language="javascript">
if(jQuery) {
jQuery.noConflict();
}
&lt;/script&gt;