Hey everyone
This is pretty simple thing and I know Im being a little bit uptight about how to go about this as I know one method that works, but I was hoping to do it my way
but im new to jquery so for all I know it may not be possible.
Anyway this is the code I know that works
however I was kind of hoping to achieve this by doing the following
Is this possible or am I being stupid wanting to achieve this, this way?
Cheers
Matt
This is pretty simple thing and I know Im being a little bit uptight about how to go about this as I know one method that works, but I was hoping to do it my way

Anyway this is the code I know that works
Code:
<script type="text/javascript">
$(document).ready(
function()
{
$("#Prof").hide();
}
);
</script>
however I was kind of hoping to achieve this by doing the following
Code:
<script type="text/javascript">
$(document).ready(
initPage()
);
function initPage()
{
$("#Prof").hide();
}
</script>
Is this possible or am I being stupid wanting to achieve this, this way?
Cheers
Matt