[jQuery] Load syntax & Thickbox
Dear all JQuery User.. :D
Can you all help me, I wan to use thickbox plugin with load syntax..
but thick box wont start when I call content_form.php , oh ya here is
mycode :
/*-----------------------------------------------------
INDEX.PHP-------------------------------------------------------------------
*/
<script type="text/javascript" src="st_js/xp.js"
language="javascript"></script>
<script type="text/javascript" src="../st_js/jquery.js"
language="javascript"></script>
<script type="text/javascript" src="../st_js/thickbox.js"
language="javascript"></script>
<script type="text/javascript">
function loadContent(id) {
$("#Right_Panel_medium").load("open.php?"+id+"");
}
</script>
<body onLoad="loadContent('form=content_list');">
<div id="pageContent">
<div>
<ul>
<li><a href =
"javascript:loadContent('menu_id=1&form=content_list');">Teras</
a></li>
<li><a href =
"javascript:loadContent('menu_id=2&form=content_list');">Coretan</
a></li
</ul>
</div>
<div id="Right_Panel_medium"><img src="../images/loading.gif"></
div>
</div>
</body>
/
*-------------------------------------------------------------------------------------------------------------------------------------
*/
/*-----------------------------------------------------
OPEN.PHP-------------------------------------------------------------------
*/
<? $form = $_GET['form'].'.php';?>
<? include $form ; ?>
/
*-------------------------------------------------------------------------------------------------------------------------------------
*/
/*-----------------------------------------------------
CONTENT_LIST.PHP-------------------------------------------------------------------
*/
<a href="content_form.php?action=edit"> <img src="st_images/
b_edit.png" alt="Edit Data" class="thickbox"/> </a>
<a href="content_form.php?action==delete"> <img src="st_images/
b_drop.png" alt="Delete Data" class="thickbox"/> </a>
/
*-------------------------------------------------------------------------------------------------------------------------------------
*/