Chrome not responding to jQuery

Chrome not responding to jQuery

I have a div #Bload, into which a lot of links load will different content. 

Sequence is: existing content  to "display:none" with straight javascript; jQuery load function; then javascript again, a setTimeout function. The idea is to have a pause before the new content loads.

On a test page, the script sequence works in IE8, Firefox, Safari and Opera, but not Chrome (5.0.375.86). 

  1. <div id="Bload" style="position:fixed; top:5em; left:3em; z-index:22;">*******</div>

  2. <div  onclick="noBlurb(); $('#Bload').load('changes44.html'); setTimeout('onD(\'Bload\')',800)"> yadda</div>

Chrome does the first function, then nothing. And no error reports.

Are there known problems with Chrome? Any suggestions for alternative coding?

Cheers