टेबल बॉर्डर की चौड़ाई बदलने के लिए, DOM बॉर्डर का उपयोग करें संपत्ति। आप जावास्क्रिप्ट में टेबल बॉर्डर की चौड़ाई बदलने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <head> <script> function borderFunc(x) { document.getElementById(x).style.border = "5px dashed blue"; } </script> </head> <body> <table style = "border:2px solid black" id = "newtable"> <tr> <td>One</td> <td>Two</td> </tr> <tr> <td>Three</td> <td>Four</td> </tr> <tr> <td>Five</td> <td>Six</td> </tr> </table> <p> <input type = "button" onclick = "borderFunc('newtable')" value = "Change Border Width"> </p> </body> </html>