i'm calling the external php page by using the ajax method in Jquery colorbox in that while i'm submitting the data the colorbox is closed automatically n go to the normal page view without lightbox how to avoid that and reopen the colorbox after submitting....
Please tell some suggestions r solutions abt this problems friends... //home page //jquery of colorbox
<script src="jquery/jquery.colorbox-min.js"></script>
<script>
$(function(){
$(".ajax").colorbox({width:"63%", height:"80%"})
});
</script>
<a class="ajax" href="assign_ajax.php">New Task</a>
This is the the page called by ajax in colorbox while submitting it goes to the normal page out of colorbox im using //////////////////////////////ajax page///////////////////////
if(isset($_POST['update'])){
$sql = UPDATE `notes` SET `note`=$_POST['update_text'] WHERE`id`={$_GET['note_id']};
mysql_query($sql) or die(mysql_error());
}
<form name="update_form" id="update_form" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);>?note_id=<?php echo $row['id']; ?>" method="post">
<textarea name="update_text" id="update_text" rows="5" cols='55'><?php echo $row['note']; ?></textarea>
<br>
<input type="submit" id="update" name="update" value="update">
<input type="button" value="cancel" class ="edit" id="edit-<?php echo $row['id']; ?>">
</form>
EDIT