1
vote
ASP.NET MVC/jQuery: Inplace Editing
Store the markup for the edit in a variable, store the current markup before the edit in a variable (so you can revert if the cancel button is pressed) and then switch it out using jquery:
…
0
votes
JQuery Click event on asp:button
ASP.NET adds to you id (example: id "selectButton" becomes "ctl00_middleContent_gvPeople_ctl04_selectButton");
Use the jquery syntax to search for the part of the id that doesn't change. …
0
votes
Jquery to target same id as class name of clicked element?
with the html you showed, next method comes to mind.
example:
$(function()
{
$('.radioclick').click(function()
{
$(this).next('.buy_button').removeAttr('disable …
