I am facing an issue where the button click event is not working in MVC JavaScript. I need assistance in raising the button click event.
<input type="button" id="btn_click" value="Click" />
<script type="text/javascript">
function pageLoad() {
$('#btn_click').click(function () {
alert('You Clicked Button');
});
}
</script>
Your help would be greatly appreciated. Thank you!