سؤال

Like the title, my quick reply ajax is not working anymore. It's always loading!

I thinks it's not about jQuery and Prototype conflict, because I'm using jQuery.noConflict() and jQuery instead $ everywhere.

هل كانت مفيدة؟

المحلول

You can try to revert postbit_classic template to default, after that implement your customisation.

BUT, you have to make sure that you have this code in your template:

<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<div style="{$post_visibility}" id="post_{$post['pid']}">

نصائح أخرى

You shouldn't have jQuery "every where", instead, the syntax should look like this;

jQuery.noConflict();
jQuery(document).ready(function($)
{
    // your jquery code
}
);
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top