Close

    कायदे आणि नियम / रस्त्याचे चिन्हे

    .auto-style2 { font-size: small; } .auto-style3 { font-size: small; background-color: #FBEBCE; }
    कायदे आणि नियम / रस्त्यांची चिन्हे तारीख कारवाई
    कायदे आणि दंड  
    मोटार वाहन कायदा १९८८  
    महाराष्ट्र मोटार वाहन नियम १९८९  
    मोटार वाहन (सुधारणा) कायदा २०१९  
    रस्ते चिन्हे  
    function filterTable() { let selectedValue = document.getElementById("document").value; let rows = document.querySelectorAll("tbody"); // Select all tbody elements rows.forEach(row => { if (selectedValue === "" || row.getAttribute("data-designation") === selectedValue) { row.style.display = "table-row-group"; // Show selected rows } else { row.style.display = "none"; // Hide other rows } }); }