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
Hari B
NA
139
68.4k
Jquery variable pass to HTML
Dec 11 2015 1:32 AM
Hello All
How can i pass Jquery variable to below HTML
please find my code i highlight red
color
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/HomePage.master" Inherits="System.Web.Mvc.ViewPage<MVCECUDataTrackingSystem.ViewModels.ECUViewModel>" %>
<asp:Content ID="Content3" ContentPlaceHolderID="NestedScripts" runat="server">
<script type="text/javascript" language="javascript">
$(document).ready(function () {
$('#ECUSubmit').hide();
});
function fnECUAdd() {
var dispid= document.getElementById("DispId");
$("#ECUSubmit").dialog({
height: 200,
width: 450,
modal: true,
title: "Confirmation",
buttons: {
"Yes": function () {
ValidationPB();
},
"No": function () {
$(this).dialog("close");
}
}
});
}
</script>
</asp:Content>
<asp:Content ID="Content1" ContentPlaceHolderID="nestedMasterContent" runat="server">
<% using (Html.BeginForm("Clone", "ECU", FormMethod.Post, new { enctype = "multipart/form-data", id = "fmECU" }))
{%>
<%: Html.ValidationSummary(true) %>
<div>
<input type="button" value="Back" onclick="window.history.back()" />
</div>
<div id="ECUSubmit">
<div class="editor-label">
<%: "Do you want to Continue? disposition is:" +
dispid
%>
</div>
</div>
</asp:Content>
Reply
Answers (
2
)
ajax jquery ui data tabel
how to get the data of a div of 400px height