@# Quotes DB     useful, funny, interesting





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



Comments:

<0> so we're talking only 0.54 deaths an hour.
<0> at his expense at least
<1> he is a superman, don't need to eat, drink , sleep and pee for the whole 24 hours
<0> and that's why i don't like that show
<1> 9 deads in the last 5 hours
<0> then expect boredom for the last 19 hrs
<1> LOL
<0> somehow i think my predictions are wrong.
<2> i hoppe he falls a sleep and **** him self so that the bad guy gets away :D
<1> yes, for the 1st 23 hours, the big bad guys always run away :D
<2> in the ending self
<2> i want som fresh episodes of naruto :(
<1> I read the book version
<2> i have som of them but not over 100+
<2> need ep 170+



<0> hmm...my shopping cart is still busted
<1> ?
<0> ruby. been working on a store/cart ... the cart broke yesterday and still broken today. time to look at the code with a clear mind.
<1> it is acutally fun to watch Jack toture people
<0> hypothetical question: if you were to help jack on a horse, would you also help jack off the horse?
<1> 1st, he don't need help. 2nd, if he is on a horse, he will shot the horse dead to get down
<1> "When Jack Bauer was a child, he made his mother finish his vegetables."
<1> http://www.notrly.com/jackbauer/index.php?topsixty
<1> btw, rule of thumbs is not get close to him, you will be dead/got kidnapped/tortured easily
<0> i hear that when superman goes to bed, he wears Jack Bauer pyjamas.
<0> (don't know if that's on the list)
<1> it is
<1> WTF, he didn't kill anyone this hour
<1> hahahahhaa
<3> lol
<1> "What color is Jack Bauer's blood? Trick question. Jack Bauer does not bleed."
<3> right im off to sleep
<0> yawn
<4> <1> "What color is Jack Bauer's blood? Trick question. Jack Bauer does not bleed." << he's like chuck norris
<4> www.chucknorrisfacts.com
<0> yup
<4> so if you try to bang her daughter you die? :S
<1> "If Jack Bauer was gay, his name would be Chuck Norris."
<4> :p
<4> i miss that show :<
<1> Texas Ranger? ....... .... . .. . . .
<4>
<4> 24
<4> what season is it now playing?
<1> Day 5
<1> 6th hours today, 12pm to 1pm
<1> and Jack didn't kill anyone this hour!
<1> I am so disappointed
<1> :D
<4> :
<4> i've seen second season so far
<4> :<
<1> I need to send Jack after you
<4> you need jack to buy me cable tv :D
<5> new favorite site: http://www.sysinternals.com/
<0> you mean it isn't http://www.zenlemur.com/innout.shtml
<5> got it memorized ;)
<0> since when are you a network admin?
<5> since when haven't i been?
<0> i can see the value in that link though
<5> the torgo wears many hats
<5> last week it was dba :/
<1> I am an admin of 5 machines here :)
<5> http://www.sysinternals.com/Utilities/Proces***plorer.html <-- fave app so far
<0> i just plug things in. i'm more of the rick morranis keymaster type guy
<5> at least you're not the gatekeeper
<5> too freudian for me
<0> yeah, madesure to get that one right first ;-)
<1> I bet [Torgo] got a spammer hat too :P
<5> yup
<5> best way to reach customers
<0> i must have not checked off the "send me all your domapi related news" box. guess it's a good thing i hang out here.
<5> actually, I didn't quite honor that checkbox last time :P
<0> you must have my old work addy in there then. i think i updated it only last week.



<5> getting ready to roll out the old 'component gallery' page soon
<0> cool
<5> i hope so
<5> been agonizing over pixels
<5> l8r
<1> I am building the version 4 of the page template of my app. but the app still not even reaching 1.0 yet :)
<5> :P
<1> new listgird2 feature #452, onitemdatabind and onitemprerender event ;)
<1> people are really obsess with drag and drop ....
<5> yup
<6> what does this mean:
<6> escape($F('greeting-name'))
<1> $F is a function
<1> escape is another one
<6> built in functions or user-defined?
<1> escape is build in
<1> while the other is not
<7> im designing a form for a site im making, how easy is it for a user to fill in name and details, then have a check box and if it ticked then the user gets to proceed to a page where he can add some images to the form to be sent, and if the box isnt ticked then for the form to be send without images
<7> sorry.. hi everyone.
<6> its easy
<6> very easy i think
<7> can you help me do it please
<6> suppose you have two forms, one regular and one for the images. FormA and FormB
<7> yep
<7> on 2 diff pages
<6> both are enclosed in separate <div> tags, but on the same page
<6> the second form FormB has style="display:none" to make it hidden
<7> ok
<7> ok ill put them on the same page
<6> on the submit button of FormA you call a function called SubmitA()
<6> if the function finds the checkbox selected, then it sets the .style.display for FormA to "none" to hide it
<6> and it .style.display for FormB to "block" to show it.
<6> if the checkbox isnt selected then the function simply makes a document.forms.submit
<7> can i put something like if document.forma.checkbox=true then document.formb.style.display = true
<7> lol sorry i think i was inventing that code
<6> display="block" to show
<7> ok lemme try
<7> brb
<6> yes,all that is easy, the real thing is that on FormB's submit button
<6> you need to submit both forms.
<7> can i make a new function
<7> Submita()
<7> Submitb()
<7> and call it function submitAll()
<7> and call submitAll from the second submit button?
<7> ok i have 2 forms and 2 submit buttons
<7> im a bit confused now
<6> read what i wrote :)
<7> ok so on the submit button
<7> onClick="SubmitA"
<7> ohhhh i dunno i hate scripting
<6> i love it, but im very new too
<6> onClick="SubmitA()"
<7> ok but where is the SubmitA function declared?
<6> in the <head>
<7> do i need to write out the function?
<6> how else do you expect it to submit?
<7> i was hoping it would be created automatically lol
<8> omg
<9> salutations matinales / morning greetings
<10> hello. does anyone know how I could calculate the style.left parameter of an absolutely positioned div box so that it will display on top-right corner?
<10> it tends to go off the window limits... :(
<7> hi, how can i make a form dissapear?
<7> or rather,.. part of a form
<9> just say "abracadabraaaa!"
<6> put the part inside a <div> with a unique id and set its style.display="none"
<7> ahhhhh okkkkkkkk!
<7> thats the bit i forgot to do.. i was trying to set the form to display=none
<11> hello
<11> i would like to ask you something
<11> http://www.olympiacos.org/sports.aspx?pageType=football
<11> that web page has a menu at the top of the page


Name:

Comments:

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






Return to #javascript
or
Go to some related logs:

#c++
wua-2340 linux drivers
enable cpanel system backups
#linuxhelp
#linuxhelp
calimann
oxx sabieh
#AllNiteCafe
rianti setiadarma
collonial java



Home  |  disclaimer  |  contact  |  submit quotes