//+-----------------------------------------------------------+ //| name : Download Alert | //| author : runzheimer | //| description: Displays an alert box before download starts | //| depends on : fancybox.js | //+-----------------------------------------------------------+ jQuery.fn.devBox = function(){ var devBox = '
'+ '

System message

'+ '
'+ '

'+ 'You are currently using the DEV environment!'+ '

'+ '
'; var o = $(this[0]); $('*:not(* *)').append(devBox); };