Forum Posting Basics

JavaScript Templates

If your page contains JS that is relevant to your question, post that too:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
	
<style>

***YOUR CSS GOES HERE***

</style>
	
</head>
<body>

***YOUR HTML GOES HERE***

</body>

<script>

***YOUR JAVASCRIPT GOES HERE***

</script
</html>

If your page uses the jQuery library, use something like this instead:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
	
<style>

***YOUR CSS GOES HERE***

</style>
	
</head>
<body>

***YOUR HTML GOES HERE***

</body>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>

***YOUR JAVASCRIPT GOES HERE***

</script>
</html>