MyBB Community Forums

Full Version: Test
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
JavaScript

JavaScript:

Try this:

<button class="closeModal" href="#">Close</button>

Then add this to the JavaScript:

$('.modalBox .closeModal').on('click', function(event)
{
    event.preventDefault();
    $('#mask, .modalBox').hide();
}); 

Quote the above and look at the solitary "J" characters. Magic!
JavaScript
JavaScript:
Javascript
Javascript:
PHP
PHP:
(2014-01-20, 06:09 PM)Fábio Maia Wrote: [ -> ]http://dev.mybb.com/issues/1636

Knew I'd seen it reported before. I'll look at the parser tonight and see if I can find the cause.