im using firebug, and nothing changes when i use $.load(.....
On Jun 26, 10:22 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > You're calling a function called 'load'. Maybe you mean to call > $.load(...)? The "here" alert probably isn't firing because you > probably don't have a function called 'load', so execution is halting > there. > > The FireBug extension for firefox would help you identify javascript > errors like this. > > --Erik > > On 6/26/07, stargate <[EMAIL PROTECTED]> wrote: > > > > > Hello, > > > i do define a iframe on a page like this: > > > <iframe id="iFrame" name="iFrame" scrolling="no" src="" frameborder="0" > > marginheight="0" > > marginwidth="0" height="90%" width="90%"> > > </iframe> > > > so i dont initialy define a src for this iframe. > > > in a js function i do fire frameready like this: > > > $.frameReady(function(){ > > load("loadmodule.cgi",POSTParam,function(){ alert("done"); }); > > alert("here"); > > },"top.iFrame", > > { > > load: > > {type:"script",src:"/Templates/Generic/Scripts/interface.js",id:"t"} > > } > > ); > > > but there is no content loaded into the iframe nor is any of the alerts > > being fired. > > Might anyone help me with this issue please ? > > > Thx > > Ralf