when you say loaded by AJAX . . . .are you using another javascript framework to call this other page? if you have any other functions could something be conflicting with the jquery? . . .could you post your code that calls the page?
On Feb 11, 12:04 pm, Davis <ywk...@gmail.com> wrote: > Hello, > > I got a simple page ( html ) loaded by AJAX, but it seems JQuery > inside that page didn't work, appreciate if anyone can give me some > hints how to implement it. > > html content, just simply corners a DIV guestbook > > <script type="text/javascript"> > /* <![CDATA[ */ > {literal} > > jQuery(document).ready(function(){ > (function($){ > $('#guestbook').corners({radio:5, outColor:'red'}); > })(jQuery); > }); > > {/literal} > /* ]]> */ > </script> > > <div id="guestbook">Guestbook</div> > > PS: I am using 1.2.6 JQuery > > many thanks/Davis.