@# Quotes DB     useful, funny, interesting





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



Comments:

<0> damn laptop standby
<1> heey ty guys...
<1> you helped a lott :)
<1> bye :D
<2> good night people
<3> hi, i wouls like some help about one javascript connected to an ASP database. Can somebody help me ?
<4> what about it?
<3> i have many groups and familys regarding those groups, I would like that when i select a group in a select box , the concerned family gone to another select list
<3> bur first of all , i Have to fill the arrays via recordsets from the database
<3> furtive do you have a solution for me ?
<4> google ajax select box and you'll find what you need
<3> even with recordsets ?
<4> well, it's up to you to switch it to json or xml
<3> ok many thanks
<5> man i love dreamweaver
<4> whatever



<5> thats not nice
<5> dreamweaver has officialy made my life wonderful
<4> whatever
<5> yea ok wtf ever
<6> Dreamweaver has officially made me a cynical bastard.
<6> After having to deal with all its bogus code over the years.
<4> MM_wtfbbq
<7> hi i want to use window.close(); to close a popup but the popoup contain frame and this button is on a frame how to do? i have to use something like _parent?
<4> use a reference to the object
<7> how?
<7> sorry i dont use javascript often
<4> var foo = window.open("blah",...); foo.close();
<7> ok thanks
<7> dont work
<4> top.foo.close()
<7> "myPop" Not define
<7> okay
<7> dont work but it okay woth only top.window.close
<7> thanks you so much
<4> no prob
<4> "The feature doesn't actually exist until there are tests that prove it works."
<8> pour vendre et partir MAINTENANT! 2 ordi portif 350 pour un, 550 pour deux respondez en anglais svp
<9> oh he was so cool ;p
<2> hello
<5> hey guys was wonderingis here an event that get fire when the browser gets killed
<6> Poor browser.
<6> There is onunload
<5> k dose this get fire every time i close the browser
<5> but then what if he presses cntrl alt delete and kills the process
<6> Then there's nothing to run the script...
<5> yea i know thats the balls ainet
<5> damn it would be niceif there was something i could though
<5> why does that guy always quit when i start chatting here
<6> I gave up trying to figure out dave-e's joins and quits years ago. :-)
<5> oh hehe
<5> i fugure i out i just need to set a timeout on the serverside and clear all the online statuses at an interval that wont interfear with the interval at wich the server getsupdate for online statuses
<5> so i dont have to worry bout browsers terminating
<6> Every system should be designed with unexpected termination in mind.
<5> yea i agree but i hope this wil srrtthisproblem
<5> sort this problem
<10> Pilum, guess what vs came out with their ajax tools
<10> **** theyr awsome
<4> they took their sweet time
<10> yea they sure did but the nice thing is theyr actualy in the toolbox
<6> ?
<6> VS?
<4> as opposed to being in the garden shed?
<10> **** and they have some nice stuff like timers,scriptmanagersupdatepanelsetc
<6> VS is.... visual studio?
<10> no well im used to working with those damn long libraries
<10> and it takes you days to figurre out whats what
<10> yup
<6> And you use that for js heh.
<10> vs==visual studio
<11> ajax.net?
<10> yup well iuse vs and i need js sometimes
<10> i write in c
<6> And I just bet that it does jscript, not javascript.
<10> c#
<10> well yea



<10> but also javascript
<11> Pilum: json IIRC
<6> ARJUN_: FYI, jscript is the microsoft dialect of javascript.
<11> yes~
<10> i normally change the script to jvascript instead of jscript
<11> the Server Controls rock
<10> what on vs
<10> mmmmmm well im using dream weaver now to write my js
<10> and thats cool to because now i get to use dual view and see client side on one and serversideon the other
<10> that rocks too
<10> i must say im not mad on ms but it works and the clients like it
<10> so i use it
<10> plus its easy
<11> why use Dreamweaver when you have Visual Studio 2005?
<10> because the text editor ****s
<10> doesnt have decent predictive text and it doesnt lay it out nicely for you like in dream weaver
<11> bah!
<10> plus now i get to use my dualview propperly
<10> i suppose its just a comfort thing
<10> why do you use vs
<10> ????
<10> mmmmm ok
<10> i need to learn some more languages
<10> i was thinking ill do php next
<10> or maybe java
<6> Focus on learning the ones you're already working on first.
<10> yea
<10> i suppose considdering i dont really know how to use it yet, i looked at some perl the other day and it made me queezy
<10> what an ugly language
<6> If you think that then you have much to learn indeed heh.
<10> hehe probably lol
<10> but hey atleast im not working vb any wy ill be backlater
<12> hi
<13> hello
<12> with (field) { if (value==null||value=="") {alert(alerttxt);return false } else {return true} }
<12> I have this function for validation of text field..
<12> I want the same function to do radio button check too..
<14> ugh, 'with' is hideous
<14> you need to loop thru the radio group and manually check which one is checked
<14> unless you're savvy like me and write a RadioGroup cl*** that implements a selectedIndex property like me ;)
<15> ganjakhor: if(value) will suffice.
<15> and dont use with.
<12> hmm
<12> let me paste the whole thing
<14> no
<14> use a pasting site
<12> yeah.. that's what I'm doing
<14> k
<12> http://pastebin.com/870298
<12> I modified it and added the radio group.. but it's not working
<12> any suggestions/recommendation/threat ?
<14> blah I don't feel like reading all that
<14> <- lazy
<12> :( just read the first 20 lines that's all.. and it's not even 20 lines of code.. maybe 10 or less
<14> iterate thru the radio buttons, see which one is checked
<14> its east
<14> 'easy' even
<12> that's waht I'm doing
<14> so what's the issue?
<12> it doesn't work
<14> what doesn't work about it?
<12> the radio thing.. even if it's not checked the form gets submitted
<16> geez, pastebin is sloooowwwwwww
<14> you realize that loop won't check every field in the collection
<14> you return false as soon as one isn't checked
<14> actually it looks like you're missing a }
<14> in the for loop
<14> if you check your js errors on the page you would see this
<12> yeah I found it.. also how can i combine the 2 with (field) into 1
<12> coz I'm returning true once it checks for the text fields
<14> eh?
<6> ganjakhor: The use of width() is discouraged.


Name:

Comments:

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






Return to #javascript
or
Go to some related logs:

#MissKitten
#networking
#linuxhelp
OmeNServE v2.50
What is the most intelligent subhuman primate ?
#AllNiteCafe
gentoo yelp mozilla-firefox-bin
#php
marieclare
date format yyymmdd linux



Home  |  disclaimer  |  contact  |  submit quotes