]> gitweb.fperrin.net Git - djsite.git/blob - quotes/static/quotes/quotes.js
4ae5cd99b868773ac4f6d0116f87abcccb3f1f80
[djsite.git] / quotes / static / quotes / quotes.js
1 function showDetails(id) {
2     document.getElementById(id).style.height = 'auto';
3     // document.getElementById(id).style.visibility = 'visible';
4     // document.getElementById(id).style.opacity = '1';
5     document.getElementById(id + '_button').style.display = 'none';
6 }
7
8 function hideDetails(id) {
9     document.getElementById(id).style.maxHeight = '0';
10     // document.getElementById(id).style.opacity = '0';
11     // document.getElementById(id).style.visibility = 'hidden';
12     document.getElementById(id + '_button').style.display = 'block';
13 }