Readmore in template Clouds
Posted: Sun Nov 24, 2019 1:07 pm
http://www.wysiwygwebbuilder.com/suppor ... .html#text
On this template you can click readmore.
My question is how to get readless on this text.
The script provided with the template is
What lines has to be inserted in the script to get the readless function?
Who knows how to do this?
When this is possible it's an easy way to have a readmore/readless function on text in a
WYSIWYG way
On this template you can click readmore.
My question is how to get readless on this text.
The script provided with the template is
Code: Select all
<script>
$(document).ready(function()
{
$('#wb_message').hide();
$('#more').bind('click', function()
{
$('#wb_message').show('slow');
$(this).hide();
});
});
</script>
Who knows how to do this?
When this is possible it's an easy way to have a readmore/readless function on text in a
WYSIWYG way