I have a ScriptManager in Master page and jquery script like this:
<script type="text/javascript">
$(document).ready(
function () {
$('input#tmpDate1').click(main);
$('input#tmpDate').click(main);
} );
</script>
The following control is on Home Page:
<input type='text' id='tmpDate1' size='25' value=''/>
and then <input type='text' id='tmpDate' size='25' value=''/> on another aspx linked from Home page.
I get the error: Microsoft JScript runtime error: Object expected
Excluding Script registrar and including scripts in head solves the problem on Home page and see the alert dialog as expected but navigating to linked aspx from Home pages shows the same error as above.
