PHP url with parameter to open with JQUERY DIALOG?
I got a php code like below
print "<td width=61><a href='popupboxM.php?SId=$vv' onClick='openpopup(this.href);return false;'>".$row['Info']."</a><开发者_如何学JAVA;/td>";
How can I open this in jquery ui dialog window ? currently I use javascript.
Plese help in for the same
use jquery $.get() or $.post() to get the link and then insert it into a div, and then open that div as jquery ui dialog
精彩评论