<script type="text/javascript">
jQuery(document).ready(function () {
jQuery(".wordsupdate").dblclick(function () {
id = jQuery(this).attr('id');
text = jQuery(this).text();
if (text) {
jQuery(this).html("<textarea style='200px;height:50px;' name=" + id + " >" + text + "</textarea>");
jQuery(".wordsupdate > textarea").focus().blur(function () {
jQuery.ajax({
type: "POST",
url: "/Home/Update",
data: "ID=" + id + "&Str=" + jQuery("#" + id + " > textarea").val(),
success: function (msg) {
jQuery("#" + id).html(jQuery("#" + id + " > textarea").val());
},
error: function (msg) {jQuery("#" + id).text(msg);}
});
})
}
})
})
</script>
jQuery(document).ready(function () {
jQuery(".wordsupdate").dblclick(function () {
id = jQuery(this).attr('id');
text = jQuery(this).text();
if (text) {
jQuery(this).html("<textarea style='200px;height:50px;' name=" + id + " >" + text + "</textarea>");
jQuery(".wordsupdate > textarea").focus().blur(function () {
jQuery.ajax({
type: "POST",
url: "/Home/Update",
data: "ID=" + id + "&Str=" + jQuery("#" + id + " > textarea").val(),
success: function (msg) {
jQuery("#" + id).html(jQuery("#" + id + " > textarea").val());
},
error: function (msg) {jQuery("#" + id).text(msg);}
});
})
}
})
})
</script>