Not *the debugger*, but just the word debugger. E.g.:
Code:
<script type="text/javascript">
function Update(id) {
debugger
$.get("Test.aspx", { id: id });
}
</script>
This triggers *the* debugger so you can look at the id variable and see if Update gets called at all. As an alternative to debugger, you can also add a simple alert('Called'); statement there. Also, you may want to look at Fiddler (
http://www.fiddler2.com/fiddler2/) to see if the update page gets called at all.
Cheers,
Imar