@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14



Comments:

<0> when doing folder names, is it better to use an underscore of a hyphen?
<1> What's a good javascript way to simply link to another site?
<2> MACscr, depends on the doctype.
<1> I was using document.href='xxx'; but apparently that doesn't work?
<0> crap, so their isnt a set standard?
<3> nytejade: location.href='blah';
<2> MACscr, well... xhtml doesn't like _ -
<1> ahh thx
<2> MACscr, html doesn't care...
<0> shoot
<0> so whats the prefered method for xhtml
<2> MACscr, my suggestion is just to make it uniform.
<2> MACscr, I do... groupnameCapitalIdentifier.
<0> hmm, i hate using uppercase
<2> wait... it doesn't like caps in names either, if I remember correctly.
<0> doh



<0> thats what i thought
<2> hmmmmmmmm.... let me check what I did. one sec
<2> MACscr, I used hyphens, and it was okay... it was underscores, I think that it screamed at me about.
<2> it being the validator
<0> right. It think as far as url preferences as well, its supposed to be hyphens too
<2> http://74.118.200.224/mn/index.php/archives/commercial-retail/6
<2> @
<2> that has rel="" something for lightbox, and it worked... when it was _ it was bad.
<0> btw, you have an emtpy <li> there =P
<2> Yeah, it's part of wordpress, that does that... I could take fix it, but I'm not being paid enough to fix everything. :)
<0> lol, i know what you mean
<2> it's in the sidebar.php, so I could fix it... but I choose not to.
<4> Hey how do I do that thing so that an <input> has a value, but when the person starts typing into it the text inside dissapears?
<4> Is that Javascript?
<2> <input type="p***word">?
<5> disappears or turns into *'s?
<2> e-horn, that dependant on browser.
<4> <input id="email" name="email" value="youremail@domain.com" />
<4> And then when someone starts typing it blanks out, I guess.
<2> ooooh, has a value.
<5> I've never seen a browser not use *
<2> PseudoPlacebo, onclick="this.value='';" or something like that.
<2> e-horn, sometimes it's a circle, or squares... also depends on the OS.
<5> A-L-P-H-A: wouldn't that actually erase the value though?
<2> e-horn, he want it to erase the value when entered.
<3> PseudoPlacebo: var i = document.getElementById("email"); i.onfocus = function() { if (this.value == this.defaultValue) { this.value = ""; } };
<2> onfocus maybe a better option.
<5> are you sure he doesn't mean erase as in obscure the display of the characters while typing? (like *'s)
<5> I've never heard of a need to erase what you're actually typing in
<5> to me that seems pointless
<2> ohoh, with prototype... let me see $("email").onfocus = function () {if (this.value==this.defaultValue) {this.value="";}};
<2> e-horn, sample data for someone to enter. i.e. the date... "yyyy/mm/dd" would be good... but i would probably just have it as small text under the input box myself.
<3> e-horn: I think he means clear the default value provided in the field when the user wants to start using it
<5> ah
<4> A-L-P-H-A: That worked great, thanks.
<6> Opera for the Wii doesn't hide the characters entered into a p***word field
<7> So?
<6> Just thought it was an interesting factoid
<6> Why is "factoid" in my dictionary?
<8> That sounds terrible
<8> Though the speed you can type with the onscreen keyboard means that it's not hard to see them anywya
<6> Opera for the Wii uses the standard OSK for p***word fields.
<6> Nothing is masked
<2> would you rather say "esoteric information tidbit" instead of "factoid"?
<5> just drop "an" and "factoid"
<5> lol
<1> I have 3 images within a <div> ... By default, 2 of them are hidden. I have javascript functions setup to unhide one at a time, and hide the other two. However, while one is unhiding, and another is hiding (i'm using a fading script), they are not in the same exact spot. One gets pushed to the bottom. I tried using z-index: , but that didn't work.
<1> Ideas?
<9> nytejade: did you use z-index _with_ a 'position' value?
<1> no
<1> What should I use? position: relative?
<9> nytejade: yeah try that
<9> you might not even need the z-index
<1> didn't work
<9> but z-index doesn't do anything without position'ing
<9> k try absolute, perhaps
<1> worked
<1> thx
<4> Hey how using javascript and I have an input how do I send the value of that field?
<4> <input onchange="my****(this.value)"></input>
<4> And the person inputs "hello" into that field, will it send "hello" ?



<9> did you ask #javascript, by any chance?
<4> Well I mean it's #web.
<4> This is the channel than I'm in.
<4> And it's not exactly off-topic.
<7> yes PseudoPlacebo it will
<4> Alright thanks.
<9> nobody said it was off-topic
<10> PseudoPlacebo: what exactly are you asking to do?
<11> 1
<10> 2
<4> sh1mmer: I wanna send out a request with the input to a field.
<4> on the change.
<10> PseudoPlacebo: back up, and explain what you want to acheive not how
<10> :)
<4> i want
<4> to take the input to a field, send it to a script, check it for naughties, the script will either send back a good or a bad which will appear next to the box
<4> straightforward eh?
<10> the YUI has some nice widgets for that kind of thing
<4> **** YUI I don't need widgets or ****, man. This is simple as ****. It's like 30 lines of code.
<10> hm.
<10> I'm curious, if it's so simple what are you asking for exactly?
<10> I was going to say about some of the finesse of using a timeout, rather than onchange
<4> I don't need to check it using timeout.
<4> And by the way
<4> you should use interval
<4> timeout is a hack
<10> If you know so much why are you a) asking us b) giving me grief because you didn't like my first suggestion
<4> sh1mmer: I dunno if you lost something.
<4> But I asked a question and got an answer.
<4> then you continued on this path of asking questions.
<11> PseudoPlacebo don't get ****ty
<4> I'm dealing with a lot of ****wads right now- that's not your fault at all and I apoligize.
<10> PseudoPlacebo: ok cool.
<10> So I guess what I meant was using onchange without some kind of buffer isn't a great user experience
<10> because you are firing requests like mad
<10> and I would add the event with a handler
<11> sh1mmer it's ok i controlled circumstances...
<10> I use YUI because a) I like it a lot b) I work for Y! and I so I use it everyday anyway
<4> I mean, I have no problem with YUI. But in circumstances like this when it's something I can do in 30 lines, using libraries and **** is just bloaty.
<6> Why is it I never heard of Asatte no Houkou before? It's a really good series
<10> PseudoPlacebo: what you had would work
<6> Hrm... it's apparently still airing
<4> Yeah.
<10> PseudoPlacebo: ideally you want to use unobtrusive methods instead
<4> It's not though.
<12> anyone an expert on xmlhttprequest auth and cookie headers?
<10> PseudoPlacebo: got a test page someplace?
<13> Does anyone in here know if Digg.com comments that are "yellow" ("editing possible" mode) are visible for others?
<4> sh1mmer: http://rootthisbox.org
<10> shousty: wanna just through your question out there?
<10> is that url for people with white, grey, or black head gear? :P
<4> Er
<4> http://www.rootthisbox.org/signup.php
<10> ok
<10> which field?
<12> well i use xmlhttprequest auth to login to same url , when i login first time with the method, it sends a Set-Cookie header
<10> holy crap
<10> don't do it on the username
<10> or the p***word
<12> reason?
<10> shousty: that was at PseudoPlacebo
<4> Reason?
<12> ah
<10> PseudoPlacebo: you are giving hints
<10> you are reducing the problem space for brute forcing
<12> but when i do the same again but different username and p***word, the set-cookie header isn't sent again
<10> shousty: because you already have a cookie?
<12> is set-cookie header that sent through that method stored as one?
<4> sh1mmer: Alright. But why doesn't it work?
<10> PseudoPlacebo: not sure
<10> seems odd.
<14> hi


Name:

Comments:

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






Return to #web
or
Go to some related logs:

#web
mysql dump java application
#web
#css
915resolution: command not found
#suse
Could not determine kernel version
fatal: Recipient addresses must be specified on the command line or via the -t o
baffles contex
#centos



Home  |  disclaimer  |  contact  |  submit quotes