I\'m using this for a show/hide div expander, which is working fine, however, the HTML entities aren\'t being outputted.
$(document).ready(function() { $(\'.
Have you tried using .html rather then .text
$(document).ready(function() { $('.slickbox').hide(); $("#slick-toggle").toggle(function() { $(this).html("▲ See Less"); $('.slickbox').slideToggle(500); }, function() { $(this).html("See More ▼"); $('.slickbox').slideToggle(500); }); });