@# Quotes DB     useful, funny, interesting





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



Comments:

<0> i am also trying to use the watch method for objects, but that doesnt seem to work either?
<1> watch? seem to gone in IE6
<0> oh thats bad, any substitute?
<1> replace iframe with div?
<1> or the popup?
<1> you just lazy, i think with the layering of toolTip call cascade upward, it will work
<1> :P
<2> the createPopup
<2> nah creatPopup was the downside
<2> http://www.neofuture.co.uk/screenshots/tooltip1.jpg
<2> http://www.neofuture.co.uk/screenshots/tooltip2.jpg
<1> stop adding features. you are indirectly pushing me to work harder
<3> hello
<3> is there a way to detect a function?
<3> for instance, if i write "function foo() { //bar }"



<3> can i find out later if i wrote it or not?
<4> if(typeof foo == 'function') {}
<3> i see
<3> RoBorg: ok thanks a lot
<4> np
<3> RoGone: are you still there? i have just another tiny winy little question:\
<5> make it quick!
<2> RoGone = RoStillHere
<3> ok, i'd like to overwrite the function's body. is there a way to do that?
<3> like with another function's body
<5> just redefine.. you can set foo = function(x) {} or function bar(x) {} foo = bar
<3> i see
<3> ok thanks a lot RoGone, that's all
<5> or foo = new Function('x', '');
<5> np
<6> sup
<6> how do you reference an textarea's value in JS?
<7> document.formnm.elementnm.value;
<2> [Torgo] impatient vardhan howdy people
<6> thanks
<8> hey Neo
<8> going good thanks. hows affinity?
<8> exams are done ;D
<2> www.neofuture.co.uk/screenshots/tooltips1.jpg
<2> www.neofuture.co.uk/screenshots/tooltips2.jpg
<2> sorry
<2> www.neofuture.co.uk/screenshots/tooltip1.jpg
<2> www.neofuture.co.uk/screenshots/tooltip2.jpg
<7> showoff :P
<2> i didnt like title+""
<2> title=""
<2> hehe its nice to have somat to show off
<8> ooh
<8> nice
<2> :D
<9> hi guys
<9> how's everyone?
<2> phine
<9> hey matey you are up and running
<9> i didnt dare disturb you
<2> hehe i been adding tool tips
<2> www.neofuture.co.uk/screenshots/tooltip1.jpg
<9> thought ye might be sleeping,
<2> www.neofuture.co.uk/screenshots/tooltip2.jpg
<2> me sleep nah
<9> wow nice they rich tooltips
<2> yah
<1> the fly p*** out and drop on the ground before it have a chance to settle * i have curry tonight*
<10> I am trying to get rid of my login <input user, p***> tags once I have logged in
<10> how would I do taht? code ishere: http://www.gabbr.com/test/logintest.php
<11> curry? are u desi?
<10> I am desi
<1> nope. i eat everything
<11> chinese then definitely
<1> is php, just detect if user is logged in, don't render the input
<1> LOL
<10> I cant
<10> the input is already rendered
<10> I am using AJAX



<1> I had dog meat a couple times when I was a kid
<1> put them in a div, hide the div if logged in
<10> I tried that
<10> but hiding the div is not easy
<10> the login form is already rendered
<10> I have logintest.php which has the login <form> and then activate.php which takes the $GET[user] and $GET[p***} and verifies
<10> if I put $loggedIn = 1; in activate it does nothing because the login <form> is already rendered by logintest.php
<10> so how do you do it?
<1> .style.display = "none";
<11> you set the display=none
<10> would that be a whole new function then?
<10> or would I do that in the activate.php script?
<1> hmmmm , you manage to use ajax to login but .....
<10> I am learning AJAX
<10> I have learned to login part, now I need to learn the logout part
<1> learn the basic of dom and css
<10> would .style.display = "none"; be in the <div> tag?
<1> know about document.getElementById?
<10> yes
<10> I learned that
<1> document.getElementById("mydivid").style.display = "none";
<1> when you logged in
<10> hmm.. so that is how you get rid of it
<1> master the walk before you try to fly
<10> thank you
<10> dude, I am still crawling
<11> in the wrong hole
<1> that's what i am saying, learn ajax before know abit more about js and dom is not helpful
<1> SufiBlade: nice
<1> Delistick`: http://www.w3schools.com/htmldom/default.asp
<11> im gonna try AJAX today as well...im curious. what should my .asp page send to the response variable? is it better to send the readymade HTML or should i send just the useful data and construct HTML via js?
<10> ok reading that
<10> send useful data and construct HTML via JS
<11> in that case, i'll have to send the data as XML. so the only way to read it again would be to traverse the tree?
<10> sweet I did it
<10> the login boxes disappear
<10> thanks loginForm
<1> http://www.quirksmode.org/blog/archives/2005/12/the_ajax_respon.html
<1> http://www.quirksmode.org/blog/archives/2006/01/the_ajax_respon_1.html
<1> i am a big fan of json
<11> yes i read that...whts json?
<10> since JS has been around for years.. why is AJAX only a few years old?
<10> what took it so long?
<11> ajax has always been there too, Delistick`
<1> no, i did ajax since 1998
<1> var a = {}; this make the object
<1> var a = {a:2,b:4};
<10> why did it just take off recently then?
<1> now, a already have 2 member
<1> that is json
<1> idiot decide to give a name on this thing, and people like to drink household cleaning prodcut
<11> yeh
<1> http://www.alistapart.com/articles/web3point0
<11> is XSL supported by the major browsers?
<1> nope
<11> coz i cant seem to get ajax to run on opera
<1> need 8.5
<10> how would I get the URL off a <a href="http://www.foo.com">link</a>; ?
<11> off?
<1> stupid router crashed
<10> I am trying to make a dropdown menu with DOM
<10> well not a menu
<10> more like expanding an headline to show an article if clicked, and making the article disspear if click again (but the headline still shows)
<1> learn the dom first
<10> function switchit(list){
<10> does the 'list' mean <li>?
<11> its a variable dammit
<10> then tell the guy who made this tutorial he is wrong
<1> IT JUST A VAR NAME
<1> don't blame the tutorial ... again, your problem is between your chair and the monitor
<10> no you should read the tutorial before ***uming that it is correct. how can you possibly ***ume the tutorial is correct when you haven't even read it? the guy SAYS that (list) refers to <li> in his HTML
<11> its still a variable
<1> it mean you need to grab a referece to a li element and call the function with i


Name:

Comments:

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






Return to #javascript
or
Go to some related logs:

#gentoo
#linux
joe pesci uhq
#php
laqwa
#linux
advantages of NTFS over EXT2
how to apache mmapfile
#AllNiteCafe
#linux



Home  |  disclaimer  |  contact  |  submit quotes