what?!?! Impossible I have emptied my cache so many times. Here is my code again
// JavaScript Document
$(document).ready(function(){
var upload_prop = $("form").attr("enctype");
var show_progress = false;
if(upload_prop == 'multipart/form-data'){
show_progress = true;
$("form").submit(function(){
$("#saveForm").val("Uploading... Please wait...");
$("#saveForm").attr("disabled","disabled");
$("#li_buttons").append("<img src=\"http://mysite.net/machform/images/loader-red.gif\" />");
});
}
});
I did as was instructed. Works in IE and Safari I just tried FFX on pc and mac and still no gif what gives. Is it a permissions thing, server issue its driving me nuts >={
:) I know "I" did something wrong but what?