Reply to comment bugs with jquery tabs
-
On my site for my comments I have a simple jquery tab setup with 3 tabs. Each tab calls a wp_list_comments with a different orderby setting (one with comment karma, one with comment date ASC, and one with comment date desc). My jquery code is the following, which works perfectly:
jQuery("ul.tab-nav").tabs( "div.tab-panes > div", { effect: 'fade', history: true } ); });
An idea of the type of tabs i’m using can be found here:
https://www.sunsean.com/idTabs/#usual
with the content of each tab being my comments.
The problem I’m having is that if a user clicks reply to comment, the reply box/field only appears in the 1st tab. If reply is clicked in the 2nd/3rd tab it seems like nothing happens but switching back to the first tab you notice that the reply field/box has appeared there.
Does anyone have any idea how to fix this, if possible? Thanks
- The topic ‘Reply to comment bugs with jquery tabs’ is closed to new replies.