@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info


Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet


Comments:

<tdd1984> any one here know much about google api maps
<VaranG|aN> http://codingp***ion.blogspot.com/2006/05/aspnet-20-callback.html - is it possible to load a result into an XML Dom ?
<[Torgo]> look down at the bottom there
<VaranG|aN> yes didn't know javascript can do it
<[Torgo]> abso-smurfly
<VaranG|aN> absolutely i.e?
<[Torgo]> yes
<ScribbleJ> Hello smart scripters!
<pHPaulo> hi there.. I need a reg express that checks if the expression *channel*locked*mail*@*information* matchs a certain string... what should be the criteria? ^(*channel*locked*mail*@*information*)$ ?
<boiss_> (OS: Windows 2000 Professional, Service Pack 2 (5.1 - 2600)) (Uptime: 10w 06:58:37) (CPU: 1-AMD K7 (0.18 µm) {4} @~1000.90MHz) (MEM: Usage: 368/512MB (71.88%) 12[4|||||||14|||12])
<boiss_> AMD Thunderbird still r0x
<|-Mike-|> Question, i'm using a link that has an onClick attribute that closes it, and it targets another named window, but doesn't work in Firefox?
<|-Mike-|> Works fine in IE. Any known issues with firefox and the target attribute or closing and window and now following through with the link?
<sc0tt2> hey folks
<sc0tt2> any ideas on why http://pastebin.com/713280 won't change my selected option in a select box? :(
<Pilum> document.getElementById("s").selectedIndex--; -> document.getElementById("s").selectedIndex = s1-1;
<Pilum> And I must say, that code doesn't make much sense heh.
<Pilum> If you're trying to drop an option, then use removeChild or something.
<sc0tt2> well
<sc0tt2> trying to select the previous and next option
<Pilum> And transfer values to it by the looks of it.
<sc0tt2> hm
<sc0tt2> oh.
<sc0tt2> i see why i did that
<sc0tt2> ya, ignore that
<sc0tt2> that was for something else i was doing with it
<sc0tt2> still around Pilum? :D
<Pilum> Yes?
<sc0tt2> uhm
<sc0tt2> if i change the selectedindex of the select
<sc0tt2> and need to use the value of the now currently selected option
<sc0tt2> how'd i get that?
<Pilum> Store it in variables?
<sc0tt2> <a href="#" onclick="document.getElementById('s').selectedIndex = document.getElementById('s').selectedIndex+1; parent.content.location = document.getElementById('s').options[document.getElementById('s').selectedIndex].value;">Next</a>
<sc0tt2> is that wise to do it that way
<sc0tt2> ?
<Pilum> Why use a select at all?
<sc0tt2> because i need to have the option of skipping to an option straight off
<Pilum> Then by all means.
<sc0tt2> it*
<Pilum> Hm?
<sc0tt2> the /notice :P
<Pilum> I ignore those.
<sc0tt2> ah
<sc0tt2> I'm using it for a template previewing engine
<sc0tt2> :]
<neurotic> :>
<VaranG|aN> Hello Pilum
<VaranG|aN> in javascript a type of break exists?
<RoBorg> err there's a break statement if that's what you mean
<VaranG|aN> why is C# so similar to javascript
<VaranG|aN> ?!
<VaranG|aN> thanks RoBorg
<VaranG|aN> never came the thing that a break exists as well
<Pilum> Why C# is similar to js? C# isn't similar to js if you ask me.
<VaranG|aN> as in syntax Pilum
<Pilum> Dozens of language are similar in syntax.
<Pilum> And it is after all commonly referred to as "c-style syntax"
<VaranG|aN> oh
<VaranG|aN> Ic
<VaranG|aN> java took from c?
<Pilum> http://en.wikipedia.org/wiki/Curly_bracket_programming_language
<VaranG|aN> oh
<VaranG|aN> thanks
<VaranG|aN> interesting
<VaranG|aN> php as well?
<VaranG|aN> :S
<VaranG|aN> how can I stop a javascript function ?
<Pilum> return;
<VaranG|aN> cheers~ again :)
<Cuscored> socio Alguen q quiera abrir una portada chevere doy el dominio
<Pilum> In English please.
<ht311> english pls.
<VaranG|aN> can I use a variable in SELECT TOP @Var
<VaranG|aN> sorry wrong window
<daron> hello
<Pilum> Hello.
<daron> can someone help me understand why this http://hypeland.com/profile4.html works in mozilla and not IE?
<daron> any one?
<Pilum> Firstly...
<Pilum> Remove all traces of 'javascript:' from your code.
<RoBorg> hmmm...seems to work to me
<daron> you mean in the <a href> ?
<Pilum> And in the onclicks. Especially in the onclicks.
<RoBorg> <a href="#" onclick="doSomething(); return false;"> <-- that's how they should look
<daron> ok
<daron> outside of standard javascript practices it seems to just be an attribute of a div that IE is not picking up
<daron> because it slides left and right but it comes from behind the div
<RoBorg> hmm
<daron> ?
<daron> did you all have any suggestions?
<RoBorg> mmmm dunno... maybe a bug in the library you are using?
<daron> uhm thats what i was thinkin, i don tknow, i wish i new javascript in depth so that i could write my own
<jora-katok> hi all
<Pilum> Hello.
<jora-katok> i have 1 question: i have following String '<root><child>test</child><child>test1</child></root>' - now i want to create an js array which will contain {test, test1}, how can i parse this xml and create objects using js ?
<Pilum> Write an XML parser.
<jora-katok> i found following ex: var xmlDoc=document.implementation.createDocument("ns","root",null); xmlDoc.load(some_file.xml) - here is loaded xml and it is represented as DOM object, the problem is that i haven't this xml , my data is stored in String , so the question is: how to load my xml without using some file. ?
<Pilum> http://devedge-temp.mozilla.org/library/manuals/2000/javascript/1.5/reference/toplev.html#1064506
<jora-katok> Pilum Write an XML parser. -- er... i am sure there should some standard approach...
<Pilum> JS doesn't have a built-in parser if that's what you mean.
<Pilum> http://devedge-temp.mozilla.org/library/manuals/2000/javascript/1.5/reference/string.html#1193137


Name:

Comments:

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






Return to #javascript
or
Go to some related logs:

keepnick.pl
#linux
What were the dolls in Jaqueline Susann's Valley of the Dolls ?
undernet skype key
#linux
Epidermal cells, palisade cells, and veins are parts of a ________.?
desktop balckbox
#MissKitten
#MissKitten
#chatzone



Home  |  disclaimer  |  contact  |  submit quotes