@# Quotes DB     useful, funny, interesting





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



Comments:

<0> and graphics
<1> Seems to load from cache here.
<1> Yep.
<1> URL: http://202.83.164.7/cvs5/images/body.gif Source: Disk Cache
<0> thats very strange....what about button_bg_seeker.gif
<1> Same
<0> sheesh...my IE must be acting up (again). ok lemme try and find the .js?var=rwjerlwe thing
<0> http://wiki.script.aculo.us/scriptaculous/show/Usage
<0> the second gray box
<1> If they want to use js just to be anal that is their business heh.
<1> I would have generated it on the fly.
<0> well perhaps they do this to make it easier for the user
<0> plus, the page may be a static page itself
<1> True.
<0> but in this case, they read the <script> tag from the document and find out what parameters are being p***ed?



<1> Possibly.
<2> hey.. i got a <table> </table> and i want to make the whole box linkable to url.. how do i do that?
<0> <table onclick="window.location='url.htm' style="cursor:pointer">
<0> oops
<0> <table onclick="window.location='url.htm'" style="cursor:pointer">
<3> Anyone alive I have a question about disabling list boxes in IE with JS
<3> figured it out.
<3> Thx fur nuthin ;D
<4> hey guys, im using window:open to view images on the fly. i tried specifying the top attribute as top=0, although I am still getting that padding gap around the image (that you can avoid with css padding and margin = 0) although, since this is on the fly i cant specify those. any ideas?
<5> how do I access URL variables in JS>?
<6> _freed: it have to be inside a html page for css to work.
<6> tybalt: checkout the location object and parse the string yourself
<5> already figured it out, thanks anyway (BTW, URL for solution is: http://evolt.jeffhowden.com/jeff/code/js_url_variables/index.cfm?foo=bar&far=boo&cfid=1235908&cftoken=14598715 )
<6> should not use escape and unescape anymore
<6> read on decodeURI and decodeURIComponent
<5> why shouldn't I use those anymore
<5> whats the rationale behind that
<6> not working for unicode
<5> so
<5> do those two functions do the exact same thing?
<5> Whats the javascript equivilant of the PHP function isset()?
<5> would it be a test for nullality?
<5> ( example: if(var == null) )
<5> or would that not see if a variable is set, like an array element
<5> it would be defined()?
<5> that URL i found doesn't work
<6> typeof
<5> So it would be like if( typeof(url['JSOPEN']) != "undefined" ) ?
<7> u been smoking?
<7> what's that suppose to do?
<1> Heh
<8> cine e din romania
<8> ?
<8> I want a script who can find a frame in a HTML of a page and put this part in a new link and lunch this link
<9> hi everyone
<9> i have a program that WONT WORK
<9> and i was wondering if i could pm someone to help me with it
<9> my for loop wont work
<9> for some reason the arrays that i use wont perform the math function
<6> no pm, use a pastebin
<6> dasdasdas, read up on window.frames
<9> can someone take a look at my code?
<6> paste your code to a pastebin, if you don't know what pastebin is, type that in your flavor search engine
<9> http://www.nomorepasting.com/paste.php?pasteID=65058
<5> /////////////////////////////////////////////////////////////////////////////////
<5> crap
<5> sorry
<6> can't comment on the code quality at all. if you want to find out what doesn't work, use alert, a lot them
<9> well its simple cuz im new at this (duh)
<9> but the problem is that i want to print out a bonus for each individual salesperson from the user prompt
<9> but when i put that in the for loop at the end of the code... it wont work
<9> it just wont do anything
<1> if(next>"") <- that actually works?
<9> yea... that keeps looping until the user clicks cancel or enters nothing
<6> it may , but very bad
<9> why is it very bad



<1> Heh.
<9> is there a way to stop the loop but having the user just press cancel?
<6> .01(cars[i]-average); <- what the hell is that?
<1> next.length > 0 or next != "" I could understand. :-)
<9> ah ok...
<9> thats part of the formula for calculating the bonus
<6> and the school still teach people use document.write .....
<1> Most teachers don't really know js though.
<6> I can't see that is a valid formula
<6> I still believe people should suffer and learn c first
<9> ah thats supposed to be total[i], not cars[i]
<9> still doesnt work
<9> this one line screws everything
<9> bonus=cars[i]*50 + .01(total[i]) + .01(total[i]-average)
<9> in the for loop
<9> i want it to display the salesperson's name and his/her bonus, but it just wont go for some reason
<9> liek when i click cancel, it's just blank, as if the for loop didnt exist
<9> anyone/
<1> .01(total[i])?
<9> thats the bonus formula
<9> for some reason its not working
<1> That is not equal to .01 * total[i]
<9> user input makes total[0] equal for instance 100
<9> but it will not work in the for loop
<1> The engine will think you're calling a function named ".01" which is not valid
<1> If you want to multiply then use the multiplication operator.
<9> oh my god
<9> thank you so much
<1> This is javascript, not MathCad. :-)
<9> that was it
<9> i knew it was a stupid mistake
<9> somewhere
<9> thanks a lot pilum i really do appreciate it
<9> thank you for everyone's help
<10> hello
<10> what am i doing wrong?
<10> <input type="button" style="width:100" value="" onClick="alert("test");"/>
<10> sorry for the utd
<10> sorry for the utf
<10> <input type="button" style="width:100" value="123" onClick="alert("test");"/>
<10> can you help me?
<11> hmmm
<11> onclick="alert('test');"
<11> single qoute
<11> try that
<1> Also know that the 3rd letter of an event handler is not required to be capitalized.
<11> Hello Pilum
<11> Pilum: I personally find it as a standard for javascript
<11> either onClick or OnClick
<1> It isn't.
<1> In fact, if you reference them as js, they HAVE to be all lowercase.
<1> And in XHTML as well.
<11> oh never noticed this
<11> ok
<11> but I never got a problem with that even though I have .js file
<10> what is wrong with this?
<10> <script>var i=1; if ($i==1) {alert("yerl");}</script>
<10> ouch $
<12> what are trying to do?
<8> anyone from romania ? ? ? ?? ? ? ? ? ?
<1> Does it matter?
<8> stie cineva PHP ?
<1> This is neither a Romanian nor a PHP channel though.
<13> dasdasdas, pt. help in romana #php.ro dar presimt ca itzi iei ban si acolo
<14> i am the lizzard king!
<11> ???
<6> I have no clue either, just perpare to do some animal control.


Name:

Comments:

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






Return to #javascript
or
Go to some related logs:

#c++
adobe flashh player 9
#teens
PWLA8391GTL linux chipset
#london
SSL is not enabled at ssl
#linux
#linuxhelp
drcrnx
fc5 mod_perl



Home  |  disclaimer  |  contact  |  submit quotes