@# 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> Er. Kay.
<1> freeone3000 I really wouldn't want to use C++ for most web development
<2> cgi is not a framework ;p
<1> freeone3000 if anything look at C# (mono/.net)
<0> Mmkay, cool. I am doing that, soon as I get my ide to work.
<1> gxti, yes, but I don't know of any other way to write C++ for web applications
<1> freeone3000 if you want look at a more traditional route, java and perl come to mind.
<0> Perl. Yay.
<0> (I usually use PHP. I want to get into something "heavier", and I know C++ better than anything else besides java. and java is a freakin PAIN to set up for web dev)
<1> freeone3000 heh i'm like one of three people at work who knows perl, most everyone else is php or java (our system is all java though)
<3> Could someone tell me why sIFR makes my <h2>'s freakin' huge => http://ejfox.com/Redesign/
<1> my personal fav is asp.net (C#)
<0> Ah, perl. The unix swiss army chainsaw.
<1> hehe perl is fun
<0> $fname = @#_;
<0> It sure is.



<3> Could someone tell me why sIFR makes my <h2>'s freakin' huge => http://ejfox.com/Redesign/
<3> >.>
<4> hey
<5> 'lo maj
<4> reisio, what the deelio?
<4> reisio how old are you?
<5> 2
<4> lol seriously
<4> i have no indication of you're ago
<4> *age
<0> How would I see the post headers sent to the server in firefox?
<5> freeone3000: http://livehttpheaders.mozdev.org/ ?
<6> anyone awake?
<7> I need a pretty "Add to favorites" icon, a lit up and a greyed out one.
<8> how would I set the value of a hidden form field to a javascript variable?
<9> Blue2, same way as with a non-hidden form field
<9> eg getElementById()
<8> I have var clip=ascii2hex(window.clipboardData.getData('Text')); document.form.clipcontents.value=clip; but it doesn't seem to be working
<10> Is there such a thing as an html element that shows plain text - that can be altered with javascript?
<9> span or div
<9> just give it an id
<10> thanks
<9> and use getElementById
<10> ok
<11> you could also do the same thing with most other HTML elements
<10> right
<12> how can i position an element (for example a line of text or an input box) by its center and not by its top line?
<9> stockholm, perhaps css: "vertical-align: center;" will help you
<12> man_in_shack: oh, i guess that looks good!
<9> hm?
<9> do you mean it works?
<12> i have not tried it yet
<12> hm, no effect...
<9> is it a block or inline element?
<12> man_in_shack: it is a div
<9> should do something then
<13> Do you have the brain worms!?
<14> Yeah, I know.
<13> =s
<14> I woke up with a sore neck.
<13> Pft.
<14> I'm also pondering my culinary existance.
<12> what is this good for? <div style="clear:both"><br /></div>
<15> stockholm, bad code
<13> Bah.
<15> baaah!
<15> :)
<15> stockholm, you probably need clearing for something in there, but adding empty elements like that (or ones with nothing but whitespace) is silly
<15> float contain: www.positioniseverything.net/easyclearing.html , www.quirksmode.org/css/clearing.html , www.complexspiral.com/publications/containing-floats/
<10> man_in_shack, span not working -- <span id="date_2">00/00/00</span> -- Is that right?
<9> yeah ... and you can use getElementById to get that element
<9> then use js functions to write to it
<10> I did
<10> one sec
<10> man_in_shack, <INPUT TYPE="checkbox" onClick="update('date_' + '2')" > -- right?



<9> :|
<9> that i don't know
<10> man_in_shack, that might break it?
<9> possibly
<10> ok - I won't use the param =- I will try to modify directly
<10> man_in_shack, This does not work: alert( getElementById('date_3') );
<10> no alert box
<9> that's broken code
<10> why?
<9> cos you're trying to alert an element, not the text inside the element
<10> ok
<10> man_in_shack, what about this: alert( date_3.value );
<9> getElementById("date_3").value; might be closer
<10> trying...
<10> no alert box appears at all
<10> <span id="date_3">00/00/00</span>
<9> does the element with id "date_3" have a valid .value?
<10> that's the html source
<9> i forget how to get contents
<9> sorry
<11> frankg: that's not .value
<11> use .innerhtml
<10> deadroot, explain please
<9> is innerhtml standard yet?
<11> err... document.getElementById('target').innerHTML
<13> no
<13> and it never will be
<11> man_in_shack: it might be. but not at this time
<9> i was told it was going to be in the next js standard
<11> document.getElementById('target').nodeValue ?
<9> people lie :)
<10> deadroot, trying...
<15> it shouldn't be in any standard, its completely against the DOM concept
<11> document.getElementById('target').firstChild.nodeValue
<10> ok
<10> Ahhhhhhh
<11> that won't work with all kinds of HTML/XHTML structure
<10> yes
<11> but in this case, it will
<9> should work with all spans
<9> as long as you have no sub elements :)
<16> hey, i need some way to submit a form when a page is loaded but i can't give the form a name, any ideas?
<10> deadroot, thx
<17> hintswen, I doubt you really need that
<10> man_in_shack, thx for the effort
<11> Zeros: it's not 100% against the DOM concept. DOM trees are initialised from a single string :P
<9> not a problem
<17> hintswen, perhaps you want to do a http request back to the server, ajax style?
<11> hintswen: if you can't name it, how about identifying it?
<16> ook i'm lost :D
<17> hintswen, what are you trying to do?
<11> <form id="formIdentifier">
<16> submit a form automaticly
<17> yeah but why?
<17> perhaps there is a better solution
<16> >_>
<11> W_work may be correct
<16> I'm gonan try that id thing, could i then use <script type="text/javascript">window.onload = function(){document.forms["formIdentifier"].submit()}</script> to submit it?
<16> :( that didn't work
<17> unless you are trying to do some malicious cross site scripting or something
<16> *cough* lol
<16> i'm not really doing anything bad
<16> just saving some bandwith lol
<16> is that a crime! :)
<17> hintswen, sounds like you are abusing javascript
<11> saving bandwidth? i don't think so
<16> ?
<17> and that hurts every legitimate user of javascript
<16> yeah, i'm saving bandwith
<16> cause otherwise i'd have to load 3 pages
<11> you're loading the page anyway
<16> if i could make this do it automaticly from a site i've saved locally, i onlt have to view 1 page
<16> only*


Name:

Comments:

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






Return to #web
or
Go to some related logs:

#math
apt get libdb-4.3
lilalinux
Client does not support authentication protocol requested by server; 5.0.18
pzip ubuntu
moz-inline-box safari
#lisp
slappasswd generate php
#perl
xsetleds



Home  |  disclaimer  |  contact  |  submit quotes