I'm new to JQuery, so I'm a little confused here. I have a button that, onclick, runs this function. When the JQuery is commented out, the alert goes off when the button is clicked. But with the JQuery, nothing is alerted when the button is clicked. What am I doing incorrectly?
<script type="text/javascript">
function LoadList(type){
alert(type);
if(type == "private"){
//$.post("fileone.php", { page: "private" };
}else{
//$.post("fileone.php", { page: "public" } );
}
}
</script>