@# Quotes DB     useful, funny, interesting





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



Comments:

<0> body {overflow:none}
<1> r u talking yo me ht311 ? 0_0
<1> yo=to
<0> I think so
<1> :)
<1> ok tx
<1> let me try it :p
<1> is tht css?
<1> 0_0
<0> yes it is css
<1> tht=that
<1> mm
<1> how can i apply it directly to body tag?
<1> 0_0
<1> ht311: i put body {
<1> overflow:none /* remove scroll */ }



<1> but it didn't remove scroll :\
<0> in <style>?
<1> yes
<0> try html { ...} as well
<0> either one
<1> mm
<1> pl let me c
<0> oh, is overflow:hidden
<0> sorry
<1> overflow: hidden; :p
<1> ups
<1> :)
<1> thanks
<1> i got there through google
<1> u can put on both to be more consistent with different modes
<1> though
<1> there's still a problem
<1> i didn't want it to remove scroll from the iframe
<0> out it in the document you wnat it to remove
<1> yes i put overflow:auto in the iframe
<1> i had to think a bit
<1> :)
<1> it looks much better now
<1> the less scrolls the better
<2> I know how to use javascript to change a picture that is displayed by refrencing the id and p***ing a id.src, but is there any way to do the same to text that is shown on a page?
<2> like, is there a container one can use for text that can be refrenced in the javascript the same way?
<3> someone here?
<4> hello, anybody online?
<4> everybody is asleep? :(
<5> yop guys
<6> hi to all
<6> can i paste a link here
<6> it's almost christmas and i want to put a falling snowflakes in my website
<6> http://www.loveletterbox.com/love_letters.htm
<7> morning, i have an easy question, is there any way to do a "submit once" code without disabling the value of the submit button?
<8> how do you know that it's easy, if you don't even know the answer to it?
<8> it could be like a 200-line code :\
<9> The value of the submit button is not the key.
<9> You need cookies.
<9> And it would probably be best to handle it serverside as well.
<7> exacube, hehe i have some kinda fix but its not the way i want it
<10> someone can tell me why i get 1 character late on my email field at http://cashflowpoker.org/events/ ?
<7> exacube, i declare an empty hidden key in the form, and when the form is submited it, before the button is disabled it p***es its value to the empty var
<7> losthimself, i think you have a syntax issue at the beginning
<10> oh, sorry, must check on firefox
<10> i will do the compatibility later
<7> losthimself, im not a js guru but what if you add the js file after the </form> ?
<10> i will try
<10> no :\
<7> or.. i dont know how on keypress events works but could sound logical that when you press a key the event is triggered and the value is not p***ed yet, got it?
<11> hi there
<7> correct me please if im wrong :)
<7> morning jaytea
<11> could anyone tell me the method used to load a specific url to a specific window name?
<11> morning :>
<10> its a good point `
<7> losthimself, just a crazy idea :)
<7> jaytea, dont look at me, i **** :}
<11> like when i click a link i want www.poo.com to load in the window named 'poo' and www.pee.com to load in the window named 'pee' :D



<7> hey! im having breakfast
<7> :P
<11> are you saying you want me to find images to further explain my example? :>
<7> no no no, let me try something
<7> when you open a window through js you have to declare a name for the window right?
<9> Nope.
<7> uhm... guess im wrong again :/
<11> :/
<11> so no one knows that method?
<11> i thought this was simple :>
<7> me too hehe
<9> What I said is, you don't _have_ to.
<9> But you _can_
<7> Pilum, you are playing with my mind :P
<9> window.open('http://www.pee.com/','pee');
<11> sweet, thanks
<11> in java script can those '' be "" or does that never make a difference
<11> or is it like php where "" allows variables and such to be used
<9> Can be either as long as there's no conflict.
<11> and '' denotes a literal :o
<9> Nah, they're the same.
<11> ok thx
<9> There's nothing in js to denote a variable like $ in PHP.
<9> The only thing you have to look out for is nesting it properly.
<9> I.e. onclick="somefunc("someparam");" <- would not work
<11> how about onClick="somefunc('...somefunc("someparam")....');"
<11> :o
<9> \ to escape
<11> maeks sense
<11> whats that popular font hmm. used on the top of yahoo for example, the 'Get Y! toolbar' one
<9> Looks like Verdana/Helvetica
<11> seems to be Verdana
<11> :D
<9> If you're on Windows, yes.
<11> oh and, is <div style=invisibility:hidden> pretty much cross browser?
<11> i remember some 6 yrs ago when i was using html, <div> was quite limited
<9> Asides from the HTML being invalid, yes.
<9> And IE6's rendering engine is 7 years old btw. :-)
<11> hows it invalid
<9> Needs to be quoted when there's non-alphanumerical chars in the value. Or if it's XHTML.
<11> oh i mean, netscape wasnt too good with <div> if i remembered, it preferred <layer> :O
<11> ahh ok :d thx again
<11> damn
<11> hidden doesnt mean its zero width/height ;| what can i do for that lol
<9> display:none;
<11> :*
<9> And it's "visibility" not "invisibility" :-)
<9> Haven't used "visibility" in a long time though.
<11> and how can i change those values with a javascript method again? :P sorry for all the questions that could easily be looked up ;S just easier if someone knows it off hand
<9> .style.cssProperty
<11> thxthx
<11> ok i researched a bit, apparently theres some hierarchy.. but i couldnt find an example for a div element
<11> doucment.something.mydivname.style.visibility = :O
<9> No.
<9> document.getElementById('div_id').style.display = 'none';
<11> oh sick
<9> .visibility is never 0 anyway.
<11> so getElementById is like some internal array?
<9> No.
<9> It's a method for looking up an element based on its ID.
<9> Divs don't have their own collection (or internal array as you call them) like i.e. images or links do.
<11> ok nice this is starting to make some sense :D
<11> ee, do you have a link for information on using parameters in custom javascript functions?
<11> i just leapt into this task but realized i have so much to relearn
<11> dont even know a good resource
<9> http://www.crockford.com/javascript/
<9> http://www.joelonsoftware.com/items/2006/08/01.html <- very good read
<11> thx lifesaver :d
<0> Pilum, you read the http://javascript.crockford.com/code.html ?
<0> "<script src=filename.js> tags should be placed as late in the body as possible. This reduces the effects of delays imposed by script loading on other page components. There is no need to use the language or type attributes. It is the server, not the script tag, that determines the MIME type. "
<0> it make sense but kind go against the standard
<9> Indeed.
<9> As late in the body is ok, but type is a required attribute afair.
<9> "The with statement should not be used." <- agree with that one at least. :-)


Name:

Comments:

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






Return to #javascript
or
Go to some related logs:

#teens
Could not get lock /var/lib/dpkg/lock + root
misskitten techno
awimbawe
#MissKitten
MissKitten +What colour on black produces the most visible combination ?
SEXDATA
You don't have permission to access /php/php-cgi.exe/test.php on this server.
#mysql
scorpaen



Home  |  disclaimer  |  contact  |  submit quotes