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.