I create dynamic a table with and tags. One of the td tags gets the id \"detailInfo\". I have an onclick function on some button.
-
2021-02-02 06:29
You can try below code:
$("Your button id or class").live("click", function(){
$('#detailInfo').html('set your value as you want');
});
Good Luck...
|