One of my web elements utilizes slideToggle to display/hide a table.
This functionality is achieved using jQuery
$("#featMoreInfo").click(function() {
$("#featben2").slideToggle('slow');
var txt = $(this).text() == '+ More Info' ? '- Minimize' : '+ More Info';
$(this).text(txt);
});
$("#featMoreInfo2").click(function() {
$('html, body').animate({ scrollTop: 0 }, 'slow');
$("#featben2").slideToggle('slow');
$("#featMoreInfo").text('+ More Info');
});
Additionally, there are javascript tooltips in some columns which experience alignment issues on occasion when clicking the + More Info
button. Has anyone encountered this problem before?