[03:20:23] Greetings, everyone, I have been trying to resolve a conflict jquery related for over 5 monhts and i still cannot resolve it.. there is no mention of the conflict in any online documentation, it's related to firefox, and hyperlinks.. would anyone like to assist ? [03:53:29] Replace following block, [03:53:29] $('body').on('click', 'a[href]', function() { [03:53:29] window.location = this.href; [03:53:29] }); [03:53:29] with, [03:53:29] $(document).ready(function() { [03:53:29] $('body').on('click', 'a[href]', function() { [03:53:30] window.location = this.href; [03:53:30] }); [03:53:31] }); [03:53:40] this worked