Side navigation
#14439 closed bug (invalid)
Opened October 11, 2013 11:37AM UTC
Closed October 28, 2013 08:33AM UTC
jquery .val() not working in ie8 with compatibility view mode on
Reported by: | anonymous | Owned by: | anonymous |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.9.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
jquery .val() not working in ie8 with compatibility view mode on
Attachments (0)
Change History (3)
Changed October 11, 2013 11:40AM UTC by comment:1
Changed October 13, 2013 12:08PM UTC by comment:2
owner: | → anonymous |
---|---|
status: | new → pending |
Please provide a complete example in jsfiddle.net. In general we do not test jQuery in compatibility modes, only in the "edge" mode for each browser.
Changed October 28, 2013 08:33AM UTC by comment:3
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
$('#btnNewSave').click(function() {
//debugger;
var valDLSel = $("#NewDegreeLevel").val();
if (valDLSel == "0") {
$("#onlyMessages").text("Please select Degree Level.");
$("#onlyMessages").dialog({
modal: true,
title: "Message",
buttons: {
Ok: function() {
$(this).dialog("close");
}
}
});
$("#NewDegreeLevel").focus();
return false;
}