| |
| |
| |
|
Page: 1 2
Comments:
<0> rofl <0> The quality of this channels' daily traffic of questions has truly plummeted <0> How does someone even figure out that they want "cracks. on mirc" so they think, "I know, I should join #javascript and ask there" <0> To me at least, this makes so little sense that it truly makes negative sense <1> haha <1> Bilge, thanks for giving me my daily chuckle :D <0> My good deed for the day is complete, and just in the nick of time, according to my clock <2> Hla Javascript pros, here's a little challenge : http://www.333photo.com/clients/tester.php it works #1 in IE, but is broken in FF, if you know how i could fix this, or an alternate way i could achieve that i'd be very glad. <3> StaZ[home], it works in both <2> ht311 yes now <2> Dorward on freenode solved my problem <2> there was 2 solution, one is use display: table-row for non-IE browser <2> the other is too simple to think about
<2> MyRow.style.display = ''; works perfectly. <2> :P <3> I use display ="" all the time <4> i've had to deviate on occasion <3> I rember some case I have to force block too. very rare <5> fixing the wiki service <3> you better do it, else you will have to sleep on the sofa tonight ;) <5> there we go, wiki is backup, and there's a cron to run it when system boots. <4> sweeeeet <5> sorry 'bout that. i'll work on the theme this week, I love having my nights free now that the wedding stuff is taken care of. <4> it won't last :P <4> soon you'll have 'honey-do' lists <5> i think i'll be good until december <5> hehe <3> you are no allow to have kids until you fixed everything <3> s/no/not <4> parents pushing for grand-children yet? <5> just jokes. wish they'd stop though, we've made it clear we're not having kids for at least another 2 years. i'll probably lose it an someone eventually. <5> s/an/on <4> yeah, we waited two years <4> not to be cr***, but it's good to know that things are working first <5> key conditions are paying off last of student debt and owning a place with a washer/dryer <4> i heard a stastitic about marriages that last beyond two years, being mostly in the clear <5> yeah, i agree. fortunately we've been living together for 5 years so few surprises left <4> yeah, us too... but something is just 'different' once it's legal <5> hehe <5> yeah, "fools rush in" <5> "Whaddya mean you gave your rent to an Elvis Landlord Impersonator? " <4> hmmm... can't seem to find the manual for my old drum pads online <4> weird.... <4> gonna make this harder to sell :/ <3> we were living together for a couple years too, just because kid coming and rushed to get formal <5> just tell 'em "I'm sure you can find them online" <3> lol <4> heh <4> ahh, what would I do without craigslist <5> pay inflated ebay shipping charges <3> stop checking out the "personal service" category <6> I wish Gene Kelly would teach me to Charleston <4> ok, captain obscure <6> geeze, no muppet show fans here? <4> disney already killed them off <4> http://savethemuppets.com/ <7> I wish Gene Kelly would drive you to Charleston <4> "Already, by October 2005, Disney has replaced Muppet performers Dave Goelz, Steve Whitmire and Bill Barretta on the "Statler and Waldorf From The Balcony" web show at movies.com." <5> egads! <5> heh... <5> Fozzie: That's what we call a Disney Joke! <5> Statler: No!! That's what we call a Dismal Joke!!! <4> wokka wokka wokka! <4> time for the telephone pole gag <3> http://www.digg.com/videos_educational/LOST_TV_Series_Hanso_Foundation_Exposed <4> hmmmm <3> I am sure it won't spoil the season 3 <5> The Internet: Other people wasting time so you can better waste your own. <5> is it just me or is youtube slow tonight? <4> has been all month <4> they finally got sued too <3> it is slow to load the page, once it is loaded , video come ok
<3> they have a lot of down time also <3> I want to see the new season .. <5> only 7 episodes then you have to wait until feb <3> bastard <3> 24's format is better then <5> should be able to test if the cron works in a bit, they just booted me off my session for maintenance <3> x reseted the topic? <5> yeah, i think you have to ask indig0 to fix it permanently, otherwise whenever x takes an action in the channel the topic gets reset <3> the channel site is down for me <5> yup <5> yup, host is doing maintenance <3> ic <5> i'm off to bed, ttyl <8> making a calculator, and wanting to add the inputs from two buttons. but have to parse the input twice... <8> result = parseFloat( parseFloat(tmp2) + parseFloat( document.getElementById("var1").value ) ); <8> any workaround to make it cleaner? <9> Hi@all <8> heya <8> Aquel look at this <8> result = parseFloat( parseFloat(tmp2) + parseFloat( document.getElementById("var1").value ) ); <8> making a calculator, and wanting to add the inputs from two buttons. but have to parse the input twice...any workaround to make it cleaner? <9> hmm no sorry <10> anyone able to help? <9> just ask <9> you'll see :p <10> http://dark-code.bulix.org/9azzjk-15013 <10> here is a copy of my code.. <10> it seems to be outputting one undefined value.. <9> apart couple of css errors, I don't see anything <10> when i output the 10 random questions <10> it sometimes outputs 1 <9> oh sorry see what you mean <10> undefined one <9> Math.random() * 25 <10> yeah <10> r = r-1 <10> right? <9> no <10> cuz array is from 0 - 24 <10> wat then? <9> cause if I return 0 <9> you get -1 <10> ohh <10> if i remove the r-1 part <10> it still <10> outputs <10> a undefined one though <9> Math.random() * 24 <10> oh <10> math.random ranged from 0-24 right? <10> <--new <9> yeah should be something like this <10> ok seems right... <10> how wud i go about randomizing the outputting of the 2 answer arrays? <11> ? <9> ? <11> the part where i output answer and answera array.. <11> i need to randomize them <12> hmm...i don't know what's wrong with the wiki now. will have to look at it tonight. <13> hey Pilum, remember my strange problem about TR display, well i finally got it, i had to use display:table-row; for non-IE or simply use "no display" to have it work crossbrowser -> MyTR.style.display = ''; //Shows the row correctly <14> Ah yes. Of course. <15> cell.appendChild(document.createTextNode(answerRandom[i])); <15> question <15> am i able to add a radio button <15> with the string im p***ing in the answerRandom array <15> ? <15> cell.appendChild(document.createTextNode('<input type=radio >'+answerRandom[i])); ??? <14> document.createElement('INPUT'); <15> so i shld change? <15> not possible? <14> var radioBtn = document.createElement('INPUT'); radioBtn.type='radio'; cell.appendChild(radioBtn); <15> wer do i insert that? <14> Before the textNode thing.
Return to
#javascript or Go to some related
logs:
#c++ il-pracett config_hwmon not detected What national capital rises where the Blue Nile and White Nile converge ?
#javascript #mirc #linux #mysql #php c++ parameter array of char*
|
|