This form works in Chrome and IE, but in Firefox, when I click on the Submit button nothing happens. Firebug doesn't report anything.
Here's my HTML:
<script type="text/javascript" src="JS/jquery-1.7.min.js"></script><!-- Jquery library -->
<script type="text/javascript" src="js/jquery.form.js"></script><!-- Ajax Form Plugin -->
<?PHP
echo "<form id='edit_weblink_form' method='post' action='processforms/process_weblinks.php'>";
echo "<input name='edit_weblink_submit' type='hidden'/>";
echo "<input name='weblinkid' type='hidden' value='$weblinkid' />";
echo "<tr><td align='left'>Title:</td><td align=left><input name='title' size='50' value=\"$title\"><img src='http://www.google.com/s2/favicons?domain=$faviconurl'></td></tr>";
echo "<tr><td NOWRAP colspan='2'>This file is for:";
echo"<fieldset style='border:none;'>";
$extract = mysql_query("SELECT * FROM groups WHERE ustaffid='$ustaffid' ORDER BY id ASC") or die(mysql_error());
$numrows = mysql_num_rows($extract);
$countgroups = mysql_query("SELECT groupid FROM weblinks WHERE id='$id'");
$countgroups = explode(",",@implode(mysql_fetch_assoc($countgroups)));
if (count($countgroups) >= $numrows && (in_array("everyone", $countgroups))) { $ch = "checked"; }
if ($numrows > 1) { echo "<input type='checkbox' id='checkall' name='everyone' value='everyone' $ch> Everyone<br>"; }
while ($row = mysql_fetch_assoc($extract)) {
if (in_array($row['id'], $countgroups)) {
echo "<input type='checkbox' name='groupid[]' id='groupid[]' value='$row[id]' checked> $row[groupname]<br>";
} else {
echo "<input type='checkbox' name='groupid[]' id='groupid[]' value='$row[id]'> $row[groupname]<br>";
}
}
echo "</fieldset>";
echo "</td></tr></table>";
echo "<input type='submit' class='mybutton' value='Save' /> <a href='?view=myweblinks' style='color:#fff;' class='mybutton' id='cancel_link'><b>Done</b></a><span id='progress' style='display:none;'><img src='images/loading.gif'></span>";
echo "</form>";
}
?>
Here's my JS:
$(document).ready(function() {
var options = {
target: '#error_box',
dataType: 'html',
beforeSubmit: showRequest_editweblink,
success: showResponse_editweblink
};
$('#edit_weblink_form').live('submit', function() {
$("#progress").show();
$(this).ajaxSubmit(options);
return false;
});
});
function showRequest_editweblink(formData, jqForm, options) {
$(document).data("weblinkid", $('input[name=weblinkid]').fieldValue());
return true;
}
function showResponse_editweblink(responseText, statusText, xhr, $form) {
$("#middle").load('staffhome.php?view=editweblink&id=' + $(document).data("weblinkid") + ' #middle')
$("#error_box").html(responseText)
$("#error_box").hide().fadeIn("slow").fadeOut(otimeslow);
}
}
showResponse_editweblinkfunction). What happens if you correct those errors? – Andrew Whitaker Jan 1 at 22:37input[name=weblinkid]should beinput[name="weblinkid"]. I have seen the missing quotes cause issues before... – Andrew Whitaker Jan 1 at 23:05