I normally don't ask for help. I have spent 3 plus hours trying to incorporate simple javascript using JQuery with MVC app. Not a production app, I am just trying to learn MVC and JQuery. I have googled and found various sample apps that I couldn't get to work. so here is a detailed explanation of the latest download that I am trying to get to work. here is the website article by well respected Dino Esposito http://msdn.microsoft.com/en-us/scriptjunkie/ff679948.aspx
just like the article mentions, I create a Asp.net MVC2 Web App(not the empty template) Than in the Site.Master I register all the css/js files in the head section and than i cut and paste the following in Site.Master
<div id="menucontainer">
<ul id="menu">
<li><%= Html.ActionLink("Home", "Index", "Home",
new { title="Home Page" }, null)%></li>
<li><%= Html.ActionLink("About", "About", "Home",
new { title = "About" }, null)%></li>
<li><%= Html.ActionLink("Misc", "Demo", "Home",
new { title = "Miscellaneous demos" }, null)%></li>
<li><%= Html.ActionLink("What's up here", "Todo", "Home",
new { title = "Read me" }, null)%></li>
</ul>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$("menucontainer").tabs();
});
</script>
like the article mentions. I have all my directory structure and the necessary js/css files in place. in the article he is using 1.4.1, the latest downloads are 1.8.something
can some one point to some download of Hello World JQuery With MVC? appreciate your help