Quote from: Frito Master on Tue 12/06/2012 09:14:43
Didn't know who larry vales was so I googled it.
Quote from: Frito Master on Tue 12/06/2012 09:14:43
I googled it.
Quote from: Frito Master on Tue 12/06/2012 09:14:43
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Frito Master on Tue 12/06/2012 09:14:43
Didn't know who larry vales was so I googled it.
Quote from: Frito Master on Tue 12/06/2012 09:14:43
I googled it.
Quote from: Frito Master on Tue 12/06/2012 09:14:43
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>My Jquery Experiments</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('a').click(function() {
$('#box').fadeout();
});
});
</script>
</head>
<body>
<div id="box"></div>
<a href="#">Fade out the box</a>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>My Jquery Experiments</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script src="jquery-1.6.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$('a').click(function() {
$('#box').fadeout();
});
});
</script>
</head>
<body>
<div id="box"></div>
<a href="#">Fade out the box</a>
</body>
</html>
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.045 seconds with 14 queries.