I am using the boxy jquery plugin to display my modal forms. http://onehackoranother.com/projects/jquery/boxy/
On the page i spawn the modal that contains a form that is submitting to itself like this:
<script type='text/javascript'>
$(function() {
$('.boxy').boxy({modal: true, closeText: '', draggable: false, unloadOnHide: true});
});
</script>
<div class="reportPop hiddenContent" id="reportPop">
<form action="" method="post" name="reportContent">
<p><?php echo $t_report_content_message_text; ?></p>
<br />
<input type="hidden" value="<?php echo $post->ID ?>" name="reported_item_id" />
<input type="hidden" value="Question" name="reported_type" />
<input type="hidden" value="<?php echo $post->ID; ?>" name="question_id" />
<input type="hidden" value="1" name="report_content" />
<input type="submit" value="<?php echo $t_report_question;?>" />
</form>
<div class="clear"></div>
</div>
I have all of the functionality working for the form submit but once i submit the form and try to use the back button, it shows the modal again which is not the desired experience. Looking to just see the page before without the modal open.
Any ideas?