This was done for me by putting some text instead of loading one of the HTML element.
Before:
$.blockUI({ css: { border: 'none', padding: '15px', backgroundColor: '#000', '-webkit-border-radius': '15px', '-moz-border-radius': '15px', opacity: 1, color: '#fff' }, message: $('#loadingMessage') });
After
$.blockUI({ css: { border: 'none', padding: '15px', backgroundColor: '#000', '-webkit-border-radius': '15px', '-moz-border-radius': '15px', opacity: 1, color: '#fff' }, message: 'Loading' })
So it works, with the same result!
source share