- Home
- Categorie
- Coding e Sistemistica
- Javascript & Framework
- [Jquery]Non parte jquery!
-
Lo ho provato con Coda
-
Hai un url in forma inattiva da postare?
Cosi ti possiamo dare una mano?
-
No... semplicemente ho postato quel codice, ditemi se è giusto. Se lo è allora non capisco perché non va, se non è giusto correggetelo..
-
Senza sapere l'errore preciso che ti da non è facile, per questo se avevi una pagina online sarebbe stato più facile.
-
Aspetta. Lo ho messo... Ecco : http /www .flylife. altervista.o rg/script. html
-
La prima cosa he mi sembra di vedere è che lo script di jquery
<script type="text/javascript" src=":http//code.jquery.com/jquery-latest.js">Sembra essere errato. Prova a togliere i :.
-
Non cambia...
-
Gia messo su anche online l'aggiornamento?
-
si
-
Prova ora.
[PHP]
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css">
#first
{
background-color: red;
}
#second
{
background-color: blue;
}
#third
{
background-color: yellow;
}
.divvo
{
height:100px;
width: 100px;
}
</style>
</head>
<body>
<button id="red">Red</button>
<button id="blue">Blue</button>
<button id="yellow">Yellow</button>
<div class="divvo" id="first">PRIMO</div>
<div class="divvo" id="second">SECONDO</div>
<div class="divvo" id="third">TERZO</div>
<script type="text/javascript">
$(document).ready(
function()
{
$("#first").show("slow");
$("#second").hide("slow");
$("#third").hide("slow");
});
$("#red").click(
function()
{
$("#first").show("slow");
$("#second").hide("slow");
$("#third").hide("slow");
});
$("#blue").click(
function()
{
$("#first").hide("slow");
$("#second").show("slow");
$("#third").hide("slow");
});
$("#yellow").click(
function()
{
$("#first").hide("slow");
$("#second").hide("slow");
$("#third").show("slow");
});
</script>
</body>
</html>
[/PHP]