TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
boycoto
NA
147
125.3k
Unable to Load Partial View
Oct 7 2013 9:05 PM
I am currently stuck with loading a partial view using a radio button, can anyone help me. Below is my jquery.
<script type="text/javascript" language="javascript">
$('input:radio[name=CreateMenu]').change(function () {
var url = '';
if ($(this).val() == "CreateMenu") {
url = '@Url.Action("MenuEntry", "EnvironmentMaintenance")';
}
else if ($(this).val() == "CreateSubMenu") {
url = '@Url.Action("SubMenuEntry", "EnvironmentMaintenance")';
}
$('#CreateMenuPanel').load(url);
});
</script>
Reply
Answers (
2
)
Bulk Import, Update, Delete from Excel to Sql using asp.net
Difference between Early binding and Polymorphsim?