In my HTML code, I've got a certain cell whose value should be cleared if a link button is pressed. I'd like to achieve this using jQuery and here's how I tried to do it but with no results:
var $delActionDate = $('#delete_Event');
$delActionDate.live('click', function() {
var myRow = $delActionDate.parent().parent();
myRow.find('#dateCell').html() = "";
Any ideas on how to do this?