2013-07-29, 08:19 PM
So I have a jquery zoom on the whole body which works across IE, firefox and chrome.
I had a no conlifct jquery added which resolved the problem where the smileyes and buttons in the editor were not clickable. Everything was fine.
Out of no where now, I notice that the edit button doesn't work in chrome... it works in firefox just fine.. this just started. This is not good which means some users wont be able to edit.
The quick edit popup does not show up.
I also noticed other popup stuff doesnt show up where it should. I have a small plugin that adds a function where if you click on the username in the thread, it shows a pop up for quick viewing "view profile, view threads, sendpm, sendemail" It shows up all the way at the bottom. The same issue does not occur in firefox only chrome.
The edit popup doesnt show up on the page or if it does it shows up all the way off screen.
How do i resolve this?
Edit: I just tested in internet explorer and the same problem occurs there too
For now I made the quickedit not popup so people can edit posts... this is terrible.
The other problem is the profile username click thing plugin... User Quickmenu In Postbit (1.0)
All of these including this plugin are using sometihng of this sort:
This is the code that the quickmenu in postbit 1.0 used in postbit classic template
That lame javascript
I had a no conlifct jquery added which resolved the problem where the smileyes and buttons in the editor were not clickable. Everything was fine.
Out of no where now, I notice that the edit button doesn't work in chrome... it works in firefox just fine.. this just started. This is not good which means some users wont be able to edit.
The quick edit popup does not show up.
I also noticed other popup stuff doesnt show up where it should. I have a small plugin that adds a function where if you click on the username in the thread, it shows a pop up for quick viewing "view profile, view threads, sendpm, sendemail" It shows up all the way at the bottom. The same issue does not occur in firefox only chrome.
The edit popup doesnt show up on the page or if it does it shows up all the way off screen.
How do i resolve this?
Edit: I just tested in internet explorer and the same problem occurs there too

For now I made the quickedit not popup so people can edit posts... this is terrible.
The other problem is the profile username click thing plugin... User Quickmenu In Postbit (1.0)
All of these including this plugin are using sometihng of this sort:
<script type="text/javascript">
if(use_xmlhttprequest == "1")
{
new PopupMenu("profile_{$post['pid']}");
}
</script>
This is the code that the quickmenu in postbit 1.0 used in postbit classic template
<div id="profile_{$post['pid']}_popup" class="popup_menu" style="display: none;"><div class="popup_item_container"><table style="text-align: left;"><tr><td ><a href="{$post['profilelink_plain']}"><img src="{$theme['imgdir']}/uqm/profile.png" alt="" title="" /> {$lang->viewprofile}</a></td><td><a href="private.php?action=send&uid={$post['uid']}"><img src="{$theme['imgdir']}/uqm/pm.png" alt="" title="" /> {$lang->sendpm}</a></td></tr><tr><td><a href="search.php?action=finduserthreads&uid={$post['uid']}"><img src="{$theme['imgdir']}/uqm/thread.png" alt="" title="" /> {$lang->viewthreads}</a></td><td><a href="member.php?action=emailuser&uid={$post['uid']}"><img src="{$theme['imgdir']}/uqm/email.png" alt="" title="" /> {$lang->sendemail}</a></td></tr><tr><td><a href="search.php?action=finduser&uid={$post['uid']}"><img src="{$theme['imgdir']}/uqm/post.png" alt="" title="" /> {$lang->viewposts}</a></td><td>{$post['buddy_post']}</td></tr></table></div></div><script type="text/javascript">if(use_xmlhttprequest == "1"){new PopupMenu("profile_{$post['pid']}");}</script>
That lame javascript