File Upload
jQuery(document).ready(function(){ var h = jQuery.noConflict(),bar=h('.bar'),percent=h('.percent');
var cover = h('
').prependTo('body'); cover.attr({'id':'cover','style':'display:none'});h('form').ajaxForm({ beforeSend:function(){ var percentVal='0%'; bar.width(percentVal) percent.html(percentVal); }, uploadProgress:function(event,position,total,percentComplete){ h(this).openOverlay({sColor:'#ffffff',iOpacity:60}); h('#cover').fadeIn(500); var percentVal=percentComplete+'%'; bar.width(percentVal) percent.html(percentVal); }, success:function(){ var percentVal='100%'; bar.width(percentVal) percent.html(percentVal); }, complete:function(xhr){ h('#cover').fadeOut(500); h(this).openOverlay.closeOverlay(); setTimeout(function(){ window.location = "https://spray-rite.net/"; },1000); } }); })