Line 3: | Line 3: | ||
<script> | <script> | ||
$('.flowtext').click(function() { | $('.flowtext').click(function() { | ||
− | $('text').toggleClass('visible'); | + | $('#text').toggleClass('visible'); |
}); | }); | ||
function flowtext(){ | function flowtext(){ | ||
var text = document.getElementsById('text')[0]; | var text = document.getElementsById('text')[0]; | ||
− | $('text').toggleClass('visible'); | + | $('#text').toggleClass('visible'); |
if (!text.style.display || text.style.display === 'none') text.style.display = 'block'; | if (!text.style.display || text.style.display === 'none') text.style.display = 'block'; | ||
else text.style.display = 'none'; | else text.style.display = 'none'; |
Revision as of 20:27, 28 October 2017