jonnypixel 0 Light Poster

Hi,

Iam trying to add two small buttons for my edit in place rows.

A user at the moment clicks the keyword where a div loads the editable text and they have to press enter key for the data to post.

How do i add a edit icon and then a yes no button after edit icon is clicked.

PHP

<div id="<?php echo $keywordID;?>" class="div_txt"><?php echo $keyword;?></div>

JAVASCRIPT

///////////////////////// Update keyword changes ////////////////////// 
$(document).ready(function() {
$('.div_txt').editable('update/updateKeyword.php'); 
});

Thanks in advance