The generated code is
<script language="javascript" src="http://servidor/astral/web/js/
jquery.js" type="application/x-javascript" ></script>
I tryied to add the
alert('jQuery not loaded');
but no alert was shown....
But still, the error persists...
I will paste here the full code, so you guys can see:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/
TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Astral</title>
<link rel="stylesheet" href="<?php echo base_url(); ?>css/
thickbox.css" type="text/css" />
<link href="<?php echo base_url();?>css/style.css" rel="stylesheet"
type="text/css" />
<script language="javascript" src="<?php echo base_url();?>js/
jquery.js" type="application/x-javascript" ></script>
<script language="javascript" src="<?php echo base_url();?>js/
thickbox.js" type="application/x-javascript" ></script>
<script>
function showSubProdutos() {
$("#submenu").fadeIn("slow");
};
function hideSubProdutos() {
$("#submenu").fadeOut("fast");
};
function showProjetos() {
$("#submenu2").fadeIn("slow");
};
function hideProjetos() {
$("#submenu2").fadeOut("fast");
};
function hideAll() {
$("#submenu").fadeOut("fast");
$("#submenu2").fadeOut("fast");
};
function changeSubject() {
if($("#assunto").find('option').filter(':selected').text() ==
"Receita") {
//$("#msg-cont").toggle(2000, function(){
$("#recipe-cont").toggle
(2000); });
$("#msg-cont").slideUp("slow", function(){
$(this).hide();
$("#recipe-cont").slideDown(2000);
});
}
else {
$("#recipe-cont").slideUp("slow", function(){
$("#msg-cont").slideDown("slow");
});
}
};
$(document).ready(function(){
var nome = "";
var pos = "";
var html =
document.createElement("div");
$(html).attr("id",
"submenu");
$(html).css("z-index",
30);
$(html).css("position",
"relative");
$(html).css("background-color",
"#FFFFD7");
$(html).css("float",
"left");
$(html).css("width",
"140px");
$(html).css("top",
"125px");
$(html).css("left",
"320px");
$(html).hide();
$(window.document.body).prepend(html);
$(html).append("<center><a href='<?php echo base_url
().'index.php/home/produtos';?>' style='font-family:Tahoma, Arial,
Helvetica, sans-serif;color:#972021;font-size:11px;line-height:
25px;font-weight:bold;'>Linha Doméstica</a><br /><a href='<?php
echo base_url().'index.php/home/produtos_institucionais';?>'
style='font-family:Tahoma, Arial, Helvetica, sans-
serif;color:#972021;font-size:11px;line-height:25px;font-
weight:bold;'>Linha Institucional</a></center>");
html =
document.createElement("div");
$(html).attr("id",
"submenu2");
$(html).css("z-index",
30);
$(html).css("position",
"relative");
$(html).css("background-color",
"#FFFFD7");
$(html).css("float",
"left");
$(html).css("width",
"130px");
$(html).css("top",
"125px");
$(html).css("left",
"480px");
$(html).hide();
$(window.document.body).prepend(html);
$(html).append("<center><a href='<?php echo base_url
().'index.php/home/astralnaescola/';?>' style='font-family:Tahoma,
Arial, Helvetica, sans-serif;color:#972021;font-size:11px;line-height:
25px;font-weight:bold;'>Astral na Escola</a></center>");
<?php
if(isset($projetos)) : ?>
<?php foreach($projetos
as $projeto) : ?>
$(html).append("<center><a href='<?php echo base_url
().'index.php/home/projeto/'.$projeto->idProjeto;?>' style='font-
family:Tahoma, Arial, Helvetica, sans-serif;color:#972021;font-size:
11px;line-height:25px;font-weight:bold;'><?php echo
$projeto->titulo;?></a></center>");
<?php endforeach; ?>
<?php endif; ?>
$("#linha-produtos").hover(showSubProdutos);
$("#projetos").hover(showProjetos);
$("#submenu").hover(showSubProdutos);
$("#submenu2").hover(showProjetos);
$(".out").hover(hideAll);
$("#content").hover(hideAll);
$("#topo").hover(hideAll);
$("#recipe-cont").slideUp(100,
function(){$("#recipe-cont").css
("visibility","visible")});
$("#msg-cont").css("visibility","visible");
changeSubject();
});
</script>
</head>
<body>
.....
On Jul 9, 5:17 pm, Matt Kruse <m...@thekrusefamily.com> wrote:
On Jul 9, 3:14 pm, Paulodemoc <paulode...@gmail.com> wrote:
Hello all... i have correctly included all scripts, and I am using
jQuery 1.3.2
i have included the script like that:
<script language="javascript" src="<?php echo base_url();?>js/
jquery.js" type="application/x-javascript" ></script>
View the source of the generated page, find the url in the <script>
tag, and enter it in manually to see if jQuery loads.
Your script url may be relative, and IE may be interpretting it
differently for some reason.
In any case, jQuery is not being loaded.
Try this:
<script language="javascript" src="<?php echo base_url();?>js/
jquery.js" type="application/x-javascript" >alert('jQuery not
loaded');</script>
Matt Kruse