Details
Description
in Desktop FF, tabs demo, select a tab, then click submit. The browser has a full page refresh. This is being caused by an error on the following line:
if ((undefined !== window.FormData) &&
("BlackBerry" !== window.clientInformation.platform) ) {
window.clientInformation is null, which causes the browser to exit the function and continue with the default form submission.
if ((undefined !== window.FormData) &&
("BlackBerry" !== window.clientInformation.platform) ) {
window.clientInformation is null, which causes the browser to exit the function and continue with the default form submission.
This has been revised as follows:
+ if ((undefined !== window.FormData) &&
+ (!window.clientInformation ||
+ ("BlackBerry" !== window.clientInformation.platform)) ) {
formData = new FormData(this);
The previous test was not failing on FF, but was also preventing FF from using FormData.