Works fine just in FF:
<script type="text/javascript">
function loadContent(id,start) {
$("#ContentRightBlockTest").load("cast_member.php?_type="+id+"&start="+start+"");
}
</script>
whith onload in the body
<body onLoad="loadContent('cast',4);">
Typically, you don’t want to use the body onLoad with jQuery. jQuery provides a much better browser-independent way to run javascript when the document completely finishes loading. Try this:
Then remove your body onload. The $(–something here–); syntax will ensure the enclosed javascript gets run when the document loads.
Alternatively, you can try: