No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
!DOCTYPE html> <html> <head> <title>Tabela</title> <style> table,tr,th, td { border: 1px solid black; border-collapse: collapse; } table{ width:50%; } input{ text-align:center; } </style> <script> function shfaq(){ var n=parseInt(document.getElementById('nr').value); var a=document.getElementById('tabela'); var x="<table><tr><th>NR</th><th>Emer Produkti</th><th>Sasia</th><th>Cmimi</th><th>Vlera</th></tr>"; var i; for(i=1;i<=n;i++){ x+="<tr><td>"+i+"</td><td><input type='text' id='artikulli"+i+"'/></td><td><input type='text' id='sasia"+i+"' onChange='shto_ne_vlere(sasia"+i+",cmimi"+i+",vlera"+i+")'/></td><td><input type='text' id='cmimi"+i+"' onChange='shto_ne_vlere(sasia"+i+",cmimi"+i+",vlera"+i+")'/></td><td><input type='text' id='vlera"+i+"' value='0' readonly/></td></tr>"; } …
The End.
Ardit_1