Add this code in html where you want to edit button to show
<a id="edit" href="#" onclick="editCSV(${command.id})" rel="tooltip-top">
    <img src = "images/icons/edit.png" width = "25" height = "25" /> 
</a>
js
if (test == true) {
    $('#edit').show();
} else {
    $('#edit').hide();
}
pass true
<script type="text/javascript">
    var test =pagetype('<%=${testCSV}%>');
    if (test == true) {
        $('#edit').show();
    } else {
        $('#edit').hide();
    }
</script>
4
solved Convert HTML code into jquery or javascript? [closed]