Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list of reviews, and when you add a review it posts to a PHP page and then loads a Smarty template into the beginning of the review list to show the review you just posted.

That works fine. However, I use a rounded corners plugin and timeago on the review post. I tried re-calling these functions after it loads the review, but that doesn't work either.

I am aware that using .live is approprite for fixing this problem in many other cases, but I don't know how I could apply that here. jquery's .live only works on events. What is the event here?

Any ideas?

For reference: jquery timeago plugin: http://timeago.yarp.com/ jquery corner plugin: http://www.methvin.com/jquery/jq-corner-demo.html

--

As requested, here is some elaboration: I use $.load to load the template content into the div area. There are no errors from this. It works perfectly, with the exception of the timeago/corner plugins not affecting the output.

I don't have the code accessible to me right now, but it goes a little something like this:

$.load('/inc/templateLoader.php?tpl=reviews');
$('abbr.timeago').timeago();
$('.corner').corner();

Some people have suggested it might not be working because $.load can complete before the page loads, which would cause the issue I am experiencing.

share|improve this question
You're using $.ajax or something similar to post the review and retrieve the new content? Please elaborate. – VolkerK Dec 9 '09 at 16:42
1  
please provide a short, self-contained piece of code that demonstrates the problem. – just somebody Dec 9 '09 at 16:43
@just somebody: +1 for your name – dokkaebi Aug 31 '12 at 4:55

2 Answers

up vote 1 down vote accepted

For those interested, the problem was that the page wasn't finished loading when I was re-applying the corner and timeago effects. I solved the problem by using $.get and then re-applying the corner/timeago stuff inside of the success callback.

share|improve this answer

Firefox and the Firebug plugin are your friends. Install, reload the page, and look at the errors on the console tab.

share|improve this answer
As noted above, there are no errors. I have both of those things and I am aware of how to use them. – PrgmrBill Dec 9 '09 at 16:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.