| Issue 73: | Posting Variables | |
| 2 people starred this issue and may be notified of changes. | Back to list |
I have a form
<form action="mypage.php" method="post" >
<input class="button" type="button" name="save" id="save" value="Save" />
...some input vars
<a href="#test" id="popup" class="nyroModal"></a>
<div id="test" style="display: none; width: 500px;">
..some input vars..
</div>
</form>
<script type="text/javascript">
$(function()
{
$('#save').click(function(e)
{
$('#popup').nyroModalManual();
$.nyroModalSettings({autoSizable: true, type:'form'});
});
});
</script>
All of that works just fine....
The popup appears, I have a submit button on the modal window, but what I
was hoping is that when i submit the overall form it would submit the
variables on the modal window and on the form where the modal window was
loaded from.
Anyone know how to get this working ?
Thanks
Sep 1, 2008
Project Member
#1
nyro...@gmail.com
Status:
Fixed
|