I am calling showedit
function with argument. But when i alert
it in the function it is showing partial value.
Here is the HTML code:
<a href="javascript:void(0)" onclick="showedit(856478546521458789);">
<i class="fa fa-pencil-square-o" aria-hidden="true" style="font-size: 20px;float: right;"></i>
</a>
Here is the Javascript code:
function showedit(id) {
alert(id);
document.getElementById("update_status_" + id).style.display = "block";
document.getElementById("status_" + id).style.display = "none";
}
Can you tell me what is the problem?