Hello World in asp.net not debugging

Hello World in asp.net not debugging

Hi,
 
I'm just trying JQuery for the first time (be gentle with me :) ).
 
I have a form in ASP.NET with a simple html button:

<script type="text/javascript" src="Scripts/setStatus.js"></script>

< input id ="Button1" type ="button" value ="button" />
 
My JQuery in Scripts/setStatus.js looks like this:

$(document).ready(

function () {
var text = $( "#Button1" ).toString.length;
alert( "Here" );
});
 
 
When i set a breakpoint and try to debug, it never reaches any of my JQuery code.  When i run without debugging, I get no alert. 
 
thanks,
Paul