foo,
Пойдёт
p.s
wrapper=function(fu, arg, text){
showMsg(text)
var id=setTimeout(function(){
fu(arg)
hideMsg()
clearTimeout(id)//БЕСПОЛЕЗНАЯ СТРОЧКА!!! Имеет смысл вне конструкции
}, 1000)
}
===
wrapper=function(fu, arg, text){
showMsg(text)
setTimeout(function(){
fu(arg)
hideMsg()
}, 1000)
}