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
rgaither5488rgaither5488 

Rerenders effecting Jquery

I'm having a problem with reRenders.  I have a visualforce page with select lists input fields and each time a person fills in one input field or changes the option on the select list another section is supposed to appear using reRenders.  However, the next section does not appear on the page.  According to the debug log the function is firing but not showing up on the page, so I started wondering if it had to do with the jQuery fancybox library that is being used on the same page as well. Can jQuery libraries interfere with reRenders?

b-Forceb-Force

I don't think JQuery will conflict with reRendering of the section,

There may be some other issue with  page.

 

try using

 

var $J=jQuery.noConflict();

$J(document).ready(function(){

//add your code here.... 

});

 

still you face the issue , please post the code 

 

Cheers,

Bala