File: showhide.js

package info (click to toggle)
libchewing 0.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 7,588 kB
  • ctags: 878
  • sloc: sh: 9,738; ansic: 7,644; makefile: 234; python: 49
file content (6 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
function show_div(div_id) {
    document.getElementById(div_id).style.display = 'block';
}
function hide_div(div_id) {
    document.getElementById(div_id).style.display = 'none';
}