Hi, I am having a Html LInk created using
<?php
echo $html->link(
'Save Form',
array('action'=>'/homepage', $userid),
array('class'=>'button','id'=>'saveForm'),
'really save the Form ?',
false
);
?>
And i want this link to append it to #save using JQuery
How could i append this Link to an Id Using Jquery.Like the below
$("<input id='saveForm' type='Submit' class='button' value='Save Form'>").appendTo("#fb_contentarea_col1down2 #save");
Please suggest me..