Noobie Jquery Question
- by piratebill
I've been working with Jquery fro a grand total of two hours now. Up until this point I have made this really simple FAQ page.
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#void").click(function(event)
{
event.preventDefault();
});
…