Hi I am using jQuery Form Plugin for a while but I found a bug in opera (v11) when I'm using secure connection (https) with certificate, the answer from server is allways "<head></head><body>false</body>"
my example is here:
NOT WORKING in Opera:
WORKING in FF, ...:
https://pegasus.q2.cz/~LukasPohl/jquery-form-test/form.htmlWORKING in Opera,:
http://pegasus.q2.cz/~LukasPohl/jquery-form-test/form.htmlhtml-echo.php is
<?php
echo '<div class="success">';
echo '<div class="message">' . $_POST['message'] . '</div>';
echo '<div class="filename">' . $_FILES['Logo']['name'] . '</div>';
echo '</div>';
?>
Thanks for any advice, Lukas