@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6



Comments:

<0> mozilla ****s
<0> I've done something like this: xspace=window.frames['someframe'];
<1> no, you ****.
<0> I loaded a page in it
<0> and now xspace.anyfunction(); is not working
<0> and it should
<1> is the content on the same domain?
<0> yes
<1> are you waiting until onload to call the function in the other frame?
<0> yes
<2> hi
<0> and another thing, an iframe inside another iframe, calls on onload parent.somefunc(); same output!
<2> I think I'm having a similar problem
<0> but if the first iframe calls a parent function it works
<2> I'm having a problem calling an iframe inside a frame
<0> so I don't ****, mozila does



<3> sound like the frame content changed/reloaded after you get got the reference
<0> any ideas on how to workaround?
<0> nope
<3> yes, you do. trust us
<0> I'm updateing the reference after every call
<0> every call from the iframe
<0> yeap, I've just checked, the reference is always refreshed
<3> if you have an url , we can have a look
<0> sorry... my provider is not allowing any external incomming connections
<2> how do i call an iframe that is inside a frame?
<3> you are not inside a frame, you are inside a window/document
<0> window.frames['firstFrame'].frames['secondIFrame']; this should work
<2> awesome.. I'll try it
<4> xslac
<4> Bah
<4> xspace = top.frames['someframe'];
<3> furtive: http://www.digg.com/gaming/Canada_lost_to_Swiss_in_mens_Hockey
<3> http://www.somethingawful.com/articles.php?a=3594
<5> hi
<0> I've fixed the thing with the frame, thanks
<0> now another problem, bigger one
<0> let's say my current document is in directory / and I have inside it a frame, now inside this frame I have a frame named "someframe". check this out:
<0> ah
<0> and the first frame points to /x/b.html
<0> now from IE it would be like this: window.frames['someframe'].location='/x/blah.php';
<0> if I want to load something in the second frame from the first one
<0> and from mozilla window.frames['someframe'].location='blah.php';
<0> no directory specification
<0> how do I get over this?
<0> this is in the category "that's how IE ****s"
<0> cuz it doesn't sets properly the current directory for the current namespace
<1> one more "x ****s" from you and you're gone till monday.
<0> well.. have I said something untrue?
<0> how could they leave it like that?
<1> it has no bearing on the case at hand.
<3> hmm, never have this problem for me
<1> that's 'cause you don't put blame on other things instead of yourself ;-)
<3> you can try to make the path be more specific with / or ./
<0> I hope ./ will do
<0> ah... ./ won't work
<0> cuz on mozilla it means /x/
<0> and I can't use / cuz the path is pure virtual, it's managed by the .htaccess
<6> how do i most easily delete the contents of a table dynamiclly?
<7> does the table has an id
<7> document.getElementById('tableId').outerHTML="<table id='tableId'></table>";
<7> is quikcer than deleting all the rows/cols
<3> HACKER!
<3> :D
<7> its quicker
<7> dont matter any grazzy hates me
<7> he is FF lover
<6> heh
<7> hence i left #mysql tho i keep loggin in by accident
<7> i ahve to many machines to edit all my performs
<6> but for the referense, why doesnt a loop over tbody-id.childNodes + tbody-id.removeChild(child_in_question) work at all?
<6> keep getting non existant pointer-errors
<7> ht311 so you would get each row then each col and destroy thm ?
<7> grazzy just blow out the table and rerender it in the dom
<7> unless you wana just remove certain rows/cols
<0> how do I check if a function is defined?
<7> is_defined ?



<7> (that was a guess btw)
<0> thanks :)
<0> I'll test it
<1> lol
<7> i would get some one else to validate first
<7> IT crowd is on
<7> sorry im off
<7> wow its weird watching on TV
<6> hmm.. neither outer/innerhtml seems to work with tables in ie ;)
<7> **** ive seen this one
<3> that is last week idiot
<3> online is one week faster
<7> no it aint, im watching on the wrong day
<7> who you calling idoit Mr Level 100
<3> grazzy: depand on what you mean by delete content?
<3> NOOB!
<7> grazzy you dont do **** in IE anyway so who cares
<6> ht311, document.getElementById('tbody_id').innerHTML = '';
<6> or outerHTML .. or the entire table's id
<6> same problem.
<6> says "unknown runtime error" or something (my ie is swedish ;(
<6> works fine in mozillabased browsers.. hmm
<6> that why i was looking into deleting the rows row by row anyway, i what K_F suggested from the start
<3> grazzy: in IE, innerHTML won't work on table and selet stuf
<6> hmm ok
<6> i'll give it a couple of more shots and see if it works
<3> use removeNode
<7> so grazzy if i come back to #mysql you gona stop haveing a personal attack on me
<3> or removeChild from the parent
<3> he give you trouble there?
<6> NeoFuture, you're welcome.
<6> ht311, just sometimes ;)
<8>Trout</marquee>
<7> haha
<7> grazzy ht311 is a IE developer too ;)
<0> is there any way to find out if a function is defined?
<6> sk8ing, if (typeof(function_name) == 'function')
<0> thank you
<6> isnt there something called defined or is_defined as NeoFuture suggested otherwise?
<6> you might want to run that on typeof(function_name) or soo
<6> comparing strings is soo uncool
<0> nope, it isn't
<3> you trust him? :D
<7> why do renult think that the back of there cars is nice and have taht "shaking that ***" slogal the rear has to be the uglyest car ive ever seen
<7> is_defined == php
<3> if(windows.functionname) or jsut try catch, still the best /formal way is typeof
<0> if (functionname) is wrong by itself
<6> windows.functioname doesnt make sense ;)
<7> sk8ing why dont u just google the function
<0> It works like grazzy sugested
<0> I checked the existence of the name before, tho
<7> if(window.printMyForm){alert("OK im here");} else {alert("RTFM");}
<0> if (funcionname && (typeof(functionname)=='function'))
<6> hmm
<6> wouldnt functionname run the function?
<0> what if printMyForm is a variable? :)
<6> could cause .. problems?
<3> if(fuctionname) will cause exception
<6> and besides, isnt it the return value of the function you're comparing?
<0> it won't
<0> I mean... I don't know
<0> I'm using it like if (xspace.functionname)
<7> sk8ing ffs google the function name you wana create
<3> function /property in global scope will able to fetch through window object
<6> ht311, you sure removeNode is such a good idea? it isnt in the DOM
<6> should have listened when NeoFuture said you too was a IE-dev :)
<7> 15 min conversaion on a 25 second google
<7> hmmmm
<0> :)
<3> grazzy: removeChild then :)
<3> only my css is not display well in ff, my code are crossplatform enough :) but IE ROCKS! no matter what
<1> not no matter what :-)


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #javascript
or
Go to some related logs:

What Thames river bridge is nearest the Tower of London ?
ubuntu nohup: appending output to `nohup.out'
#AllNiteCafe
#c++
#php
#linux
xxlgay
What is
#linux
#AllNiteCafe



Home  |  disclaimer  |  contact  |  submit quotes