MyBB Community Forums

Full Version: can't log into my forum because of jQuery?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Everytime I try to log in, I click on the dropdown login and type in the text box but it collapse. Any help?

HeaderInclude: http://gyazo.com/12a94fbabef77392f586ee34c8184feb
Header: http://gyazo.com/721666978ae114f54ae0f03e529cd0b7
Header_WelcomeBlock_Guest: http://gyazo.com/c51d9bb5d9ae3717ff3bb84eae134b5b
CSS: http://gyazo.com/7df1b0f2ff4b1fb5d53ac47cf68d5a95
Website: http://www.ComingSoon.VisualizeEdits.com/

Solved by replacing
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery(".login").click(function() { jQuery('.login-slide').slideToggle('fast'); }); });
</script>
with
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery(".login").click(function(event) {if (event.target === this){ jQuery('.login-slide').slideToggle('fast');} }); });
</script>

Thanks to .m.! Smile