Hi,
how did you get it to work?
I have setup my page template and header setup as follows:
Page template:
<html lang="&BROWSER_LANGUAGE.">
<head>
<title>#TITLE#</title>
<link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_12/theme_3_1.css" type="text/css" />
<script src="#IMAGE_PREFIX#themes/theme_12/jquery126.js" type="text/javascript" /></script
#HEAD#
</head>
<body #ONLOAD#>#FORM_OPEN#
and my page header is as follows:
<script>
$().ready(function() {
//Hello World
alert("Hello world!");
});
</script>
I don't get any message or JS errors in IE though in Firefox 3 with firebug I get
"$ is not defined"
and points to the first line in my header
"$(document).ready(function( ) {"
Can anybody help me?