View Single Post
Old 07-04-2011, 11:51 AM   PM User | #2
devnull69
Senior Coder

 
Join Date: Dec 2010
Posts: 2,261
Thanks: 10
Thanked 533 Times in 527 Posts
devnull69 will become famous soon enough
What is the "quotet post" ?

Generally you can use .load() to load external content into a DOM element using Ajax.
Code:
$('.example99').click(function() {
   // replyText is the id of the textarea
   $('#replyText').load('path/to/whatever.php');
});
devnull69 is offline   Reply With Quote