I would like to show my retrieved content form my classes method in thickbox. How could I do this? I have been adding the proper id to my desired hyperlink but all of the admin body is getting parsed inside of the thickbox.
<a href="https://wordpress.stackexchange.com/questions/76358/?page=blahblah&TB_iframe=true&width=600&height=550" class="thickbox">Click</a>
class myAdmin {
public function __construct() {
}
public function myfunction() {
echo '<div class="css_class">The content of my thickbox</div>';
}
}