Hello all!
I have this .html
-----------------
<script language="JavaScript" type="text/javascript" src="jvs/
jquery-1.2.5.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").click(function(event){
alert("Thanks for visiting!");
});
});
</script>
</head>
<body>
<div id="contenidos">
<p>Escoger del menu</p>
</div>
</body>
</html>
----------- eof 8< ----
and i have this other .css:
---------------------------------
#contenidos{
float:left;
width:480px;
min-height: 250px;
border: 3px solid grey;
margin-left: 10px;
padding: 5px;
padding-bottom: 8px;
background-color: #fff;
}
---------EOF 8<---------------------
my question. How i do to used this .css file in my .html with jQuery¿
Thank´s