acabo de empezar con jquery y estoy intentando cargar un link en un div concreto y no me acaba de funcionar a ver si alguien me hecha un cable.
Código:
<html>
<head>
<style>
#menu {
float: left;
width: 100px;
height: 400px;
border: 1px black solid;
}
#contenido
{
float: left;
border: 1px black solid;
width: 400px;
height: 400px;
}
</style>
<script src="jquery.js" type="text/javascript"></script>
<script>
$("#estrategia").click(function(){
$("#contenido").load("estrategia.html");
});
</script>
</head>
<body>
<div id="menu">
<a href="#" id="estrategia">Estrategia</a>
</div>
<div id="contenido">
jeje
</div>
</body>
</html>