@# Quotes DB     useful, funny, interesting





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



Comments:

<0> might work
<0> 10x for the help
<1> i cant start photoshop to do a grad tho
<0> i know how to do that
<0> so there;s no pb
<0> i got the picture
<2> sup folsk
<2> folks even
<1> http://www.neofuture.co.uk/grad/
<1> sorry bad gradient i robbed it from google images
<1> if you wanted the layer fixed you can do that too
<3> heya folks. I want to check to see if a value is in a set of values (ie: php> in_array('value',array('value','value')) or in perl you could use a hash and check exists)
<0> it's nice
<1> ok
<1> http://www.neofuture.co.uk/grad/
<1> ith scroller



<1> works in ff and Ie
<0> i see
<1> obvously you need to put the CSS in an extrenal file but the content will be SEO`able
<1> and you get a resizable gradient background
<1> if you want multiple colours i would use GD and php to generate the background image on the fly
<0> 10x again
<1> np
<1> sorry to shoot ya idea down just wanted to illustrate its sometimes easier to think simple
<0> i know
<0> but still please tell me how can i replace document.write in code writing. with what?
<4> Freman: you need to write your own function
<4> you are using non standard code
<4> and it won't work in FF1.0
<3> http://funkbox.wbs.net.au/watcher.php
<4> oh
<4> table don't support innerHTML
<4> in IE
<4> fyi, select also
<5> tbody may, no?
<1> no
<1> cells rows only
<3> I'm not using table.innerHTML, I'm using td.innerHTML
<4> ops
<4> but you still did something very bad
<3> what's that?
<4> you create an element from current document and append in another one
<3> there, I fixed that
<3> still don't work in IEbut
<4> Look closer
<3> it doesn't like td.cl***Name? it says invalid argument
<4> tr.appendChild(td);
<3> line 38, invalid argument - line 38 = td.cl***Name = 'c'+i;
<4> that is not the error i get
<4> look
<3> hmm I've set var td=doc.createElement, now it doesn't give me any errors - it just doesn't do anythig
<4> and you should consider move this function to your "doc", is not good idea for mess around between document like this
<3> maybe...
<3> but still, no more errors - just no output at all
<4> http://www.oreillynet.com/pub/a/javascript/2003/05/06/dannygoodman.html
<4> usually, i use the last method, I never dig deep into the dom way
<6> any of you messed with (ms) automation objects in wscript?
<6> I essentially need something like the cast operator
<5> to do what?
<6> but (of course) that doesn't exist in js
<1> oooh its imp
<6> got a reference to an InternetExplorer instance
<6> and sup NeoFuture :D
<6> trying to get a IHTMLDocument2 interface from its Document property
<6> unfortunately I'm only getting an IHTMLDOcument interface
<6> and I see no way to specify the type I want returned by InternetExplorer.Document
<5> i haven't messed with that in wsh
<3> well I've moved all the code to the child document, IE still doesn't want to join the party
<5> only in delphi
<4> http://support.microsoft.com/kb/q249232/
<6> ya, found code in delphi
<6> this is all within an .hta so I want (need?) to use wscript
<4> Freman: read that link i post earier
<5> man, that's an ugly bit of code there
<6> wonder if the shell provides a way to cast...
<3> I have been



<4> impatient: "If memory doesn't fail me, you retreive the "IHtmlDocument2" property from an imbedded IE browser and use the "All" collection to enumerate the IHtmlElements to find to the elements you need. "
<4> http://episteme.arstechnica.com/groupee/forums/a/tpc/f/6330927813/m/389001568731/r/919004578731
<4> not sure if that help
<3> I see now... I don't understand, but I see (c:
<6> IHtmlDocument 2 is the interface
<6> Document is the property
<6> unfortunately Document is giving me a IHtmlDocument instance :\
<4> i understand, but seem you get some extra stuff through the all collection. I am not saying it may solve your problem ;)
<4> write a control yourself :D
<4> or find one
<3> when removing a row from a table, is it enough to just remove the row - or do I have to remove all the cells first?
<4> i think you can just remove the row
<5> takes a bool to do children to iirc
<4> [TorgoAway] make me be become a table noob ;)
<5> 15 years of needing a life ;)
<4> heh
<1> hehe indeed
<1> thats 2 gl***es
<4> seem only furtive got a life, but i think hockey is like another form of IRC :D
<1> lol
<3> Is there any way to catch an 'on stop' or 'on timeout' for an iframe?
<4> hmm, don't think so
<4> there should be some way to get the status code
<4> there is document.readyState in IE
<7> is anybody available to provide a little help?
<7> really have been struggling with this problem
<8> shoot
<8> if someone can help you, they will
<9> hi hello
<9> is anyone here who could help me out on javascript?
<10> just flipping ask
<9> using the record object
<4> first time i hear that
<9> wel i want to make a record
<9> so that i can store a car details
<9> such as year,color,type..etc
<9> so made this
<9> function vehicle()
<9> {
<9> this.type = prompt("enter the vehicle type");
<9> this.year = number(prompt("what years is your car"));
<9> this.color = prompt("enter the color of your vehicle")
<9> }
<9> function addvehicle()
<9> {
<9> var nvehicle = new vehicle ()
<9>
<9> return nvehicle;
<9> any suggestions?
<4> DON
<4> NO pasting in channel
<9> oh srry
<4> seperate the object with prompt
<4> function vehicle(type , year, color) <- call your new constructor after you get all the information
<9> wat do u mean
<4> what you mean by "store"?
<9> 2.Design a motor vehicle record. A motor vehicle could be a car, truck, bus or any other vehicle that uses public roads. Consider the points of difference among vehicles. E.g. number of wheels, basic type, make, model, weight, carrying capacity, number of doors, engine capacity, etc.
<4> that is how your object will look like, didn't say anything with "store"
<9> yeh i was wrong
<9> but as us see it says to creat a record
<4> my only suggestion is you doing prompt in your cl*** (not record!) , that ****s
<9> lol
<4> haven't see homework question for a while
<11> good morning @all
<12> Hi.. does anyone know how can i put 2 submit buttons on a single form?.. each sending the post data to different pages..
<13> Put them in and have their onclick change the form's action.
<12> can u tell me what function I have to put in the onlick() ??
<13> this.form.action='whavever';
<12> this.form.action='submit' is ok??


Name:

Comments:

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






Return to #javascript
or
Go to some related logs:

//members.collegeteensbookbang
Parse error: syntax error, unexpected T_VARIABLE nucleus
#linux
#skype
ifconfig del linux
overknocking
#linux
#linux
#linuxhelp
#linux



Home  |  disclaimer  |  contact  |  submit quotes