Hi Alex,
Thanks for the quick response and solution. Great work on this plugin!
It shouldn’t break anything unless jQuery isn’t loaded. A safer route might be using just pure Javascript to change the class names.
I’ve run into the same issue. My site is using Bootstrap, which has it’s own “hidden” class that overrides the inline style given to the feedback <div>. I ended making the change at line 33 of js-functions.js below to fix (depends on jQuery).
// A generic HIDE and SHOW stuff so you don't need to worry about toggles
function divDisplayShow(id)
{
//this.document.getElementById(id).style.display="block";
$('#'+id).removeClass('hidden');
}
function divDisplayHide(id)
{
//this.document.getElementById(id).style.display="none";
$('#'+id).addClass('hidden');
}