Good that you pointed that out.. I hadn't notice this until now.. This will save me a lot of time to click on somebody's profile to see their join date. xD
The problem is when you use the quick reply the post is loaded in with ajax and jQuery is not able to access it that's why it does not work.
The problem is here:
Code:
$('#toggle-view li').click(function () {
That click function is causing the problem it cant find the selector because it does not "exist" in the dom.
Code:
$("#toggle-view li").on("click", function(){
Changing it to an on click even jQuery will "search" for it.
This is untested but you can read more about the on click function on the jQuery docs.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.