How to open form action in Jquery Dialog

Posted by user342391 on Stack Overflow See other posts from Stack Overflow or by user342391
Published on 2010-06-03T14:06:15Z Indexed on 2010/06/03 14:14 UTC
Read the original article Hit count: 188

Filed under:
|
|
|
|

I have a form:

<form style="display: inline;" action="/player.php" method="post">
            <input type="hidden" name="recname" value="'.$row['name'].'">
            <input type="hidden" name="recordingdesc" value="'.$row['description'].'">
            <input type="hidden" name="reclink" value="$_SESSION['customerid'].'-'.$row['timestamp'].'.wav">

            <button type="submit" class="tooltip table-button ui-state-default ui-corner-all" title=" rec"><span class="ui-icon ui-icon-volume-on"></span></button>
            </form>

and i want player.php to open in a modal dialog and be able to display the post information how can this be done.

© Stack Overflow or respective owner

Related posts about php

Related posts about jQuery