javascript - Expand/collapse not working using java script in html -
this link http://jsfiddle.net/susxk/124/ when clicking customer services not happening can 1 me issue.
expected output:
clicking customer services want show full table.in same way collapse.
this show , hide table
$(document).ready(function() { $(".form-matrix-table").hide(); $(".form-label,form-label-top").click(function() { $(".form-matrix-table").toggle(); }); });
Comments
Post a Comment