Monday, August 2, 2010

Configure the HTML Page/Document

There are three parts to most illustrations of jQuery handling—the HTML document itself, Case Cading Style Sheet files to style it, and Java Scripts files to act on it. For this example,


<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Your Document Title</title>
<link rel="stylesheet" href="path-to-stylesheet-file/mystyle.css" type="text/css" media="screen" />
<script src="path-to-jquery-file/jquery.js" type="text/javascript"></script>
<script src="my_custom_functions.js" type="text/javascript"></script>
</head>
<body>
Page's Main/Body Contents ...
</body>
</html>

No comments:

Post a Comment