Jquery is not working with EJS, here is my EJS page. I can see EJS functionality working properly but jQuery functionality is not working. It does not show any error.
<!DOCTYPE html>
<html>
<head>
<title>Help Page</title>
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body>
<h1>Help</h1>
<p>This is Help Page</p>
<h2> Member Data </h2>
<% data.forEach(function(d){ %>
<%= d.member_desc %>
<% });%>
<script type='text/javascript'>
$(function(){
alert('inside jquery');
});
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
</body>
</html>