| |
| |
| |
|
Page: 1 2 3 4 5
Comments:
<0> IE drop down pieki <0> hence needing to calculate the offset to top. <0> only a quick demo and i cant be arsed to fix that layout problem for FF but its easy to fix <1> before googling, i am thinking compare the reference inside the parent.frames collection, to something to self <0> yeah its not parent.frames and the frame has no reference id <0> its sometimes parent.parent.parent..... <0> <grumble> why the hell aint there a global clientX like screenX </grumble> <1> i know, focuse on solving one level, and you will rely on the same function to call cascade multi leve <1> there is componentFromPoint in IE <0> whats that <1> not releated <0> yeah thats not gona help really <1> looked at screenX ? <1> and screenY <0> yeah i have an idea <0> http://www.neofuture.co.uk/createPopup.html
<0> Whooot <1> :) <1> happy now? <0> yeah <0> screenx and screentop calcualtions <2> heh <2> that's thinking outside the box ;-) <1> you need to thanks MS give you screenX :) <1> oh work in FF too <0> oh crap <0> lol <0> got a little issue :( <1> I mean FF have screenX, not createPopup <1> not sure the side effect you p***ing the e across window .... just watch out for that one if you have problem <1> ususally, i clone the event and p*** that, for simulate fire fake event <1> http://www.vivabit.com/bollocks/2006/01/27/dom-abuse-part-1-drag-and-drop-is-crap <1> NeoFuture: unrelated, just fyi <1> http://hartshorne.ca/2006/01/23/javascript_cursor_position/ <1> ... too lazy to write my blog, seem i have a few thing i can write about. (collecting from Neo's question;) <0> lol <0> this aint working quiet how i wanted it to <1> what's the issue/ <1> ? <0> whats the correct usage for setTimeout lmfao <3> setTimeout('function',timeout); <1> you can p*** a string to eval , or a function obj for it to call <0> setTimeout(function(){showtoolTip(html,w,h,e)}, 1000); <1> i stop p*** string nowaday <0> that should work no ? <0> member not found <1> i have no clue, e is out of scope <1> e nolonger exist after timeout <1> that why i said I like to clone it <0> how do you clone the event then <0> aghh screw it i cant do it this way <1> var myE = {}, for (var i in e) {myE[i] = e[i]}; <4> hm. <4> ht311: shallow-clone. <4> ht311: You got a deep-one as well? ;) <1> yes, event is shallow <4> ht311: why would you want to clone an event-object? <4> s/why would you/why would anyone/ <1> for me, i got the event , replace the srcElement, p*** it to another component's eventHandler to handle the event, manual event routing within widget <1> for him, he want to use it after setTimeout <4> ok, guess that's a have-to since IE has a global event object. <1> after clone, technically it is not event anymore. jsut a normal js that look like event <4> I wrap all my event stuff in a *normalized* event-model. <1> that why in IE need that so that it work in normailzed way <4> yes <1> for me, is different, I can trick [Torgo] stuff to do what i want it to do <4> Anyone know how the evetn model will look in IE7? <1> I think is a good approch too <1> will stay as it i think <4> too bad. <5> Hi, is it possible to go the next form element by knowing a "tabindex" ? so i can, in pseudo, elem = (tabindex + 1).focus(); <5> Maybe i need to write a function that looks for a element with a certaing tabindex? <1> you need to write your own function to loop it to find it out <5> ok <5> Hmm, if i dont excplicitly set the tabIndex in my HTML, wouldnt each focusable element automatically be ***igned one ? <6> yes <7> hi all looking for some ***istance if anyone has the time
<7> got a <select> <3> Hard to know if we have the time before we know what the problem is, wouldn't you agree+ <3> ? <7> lol i meant to add or the inclination actually but anyway <2> did you read our faq about select first? http://www.javascript-channel.com/Wiki.jsp?page=FAQ#select <6> holy crap, the site is up <6> :P <7> not a select problem i am getting there <2> hey, i said it would stay up ;-) <7> want to change innerHTML of a div to the value of hidden field based on the value of a select option <6> there you go then <2> onchange="yourCrazyFunctionHere()" <6> just places those words with code <7> ie. the hidden field ID is the same as the val of the option <2> ew <6> even better <2> why not just put the val of the option as being the val of the hidden field? <2> cut out the middle man and p*** the savings on to you <7> hmm this is a valid point and in trying to get to the right result i over thought it... thanks <6> i must be craaaaaaZy to be giving away cars at these prices! <2> channel guys on my right for high fives, channel ladies on my left for makeouts <7> thanks guys laters <6> floppy disks vs. harddisks <2> heh, i saw two boxes in the trash yesterday with 5 1/4 drives .... couldn't of been more than 16mhz machines. wonder why they waited so long to dump them. <6> i prefer these floppy ones because they're bigger and hold more memories <6> although you have to fold them to fit them in todays computers <2> hehe <6> best one for a while now <6> loved the cheat-bot too <5> Hmm, i've got a formElem.tabIndex which gives 0. Anyone know why ? (IE6) <1> the 5 1/4 floopy jacket is good to hold cd :) <5> Its got no tabindex explicitly set. <1> is set to 0 then when it is not set explicitly, also, the order of the elements appear in the dom will be counted if the tabIndex is same <5> Huh? i thought it would be automatically set if not specified, am i wrong? <6> it's not "set", no.... but they will participate in the tab chain <5> Yes, fixed it with explicitly setting tabindex on the form elements.. Needed it for setting focus to next tabindex after a selectdate selection in a field. <6> alright, here we go <6> http://www.remotesynthesis.com/blog/index.cfm/2006/1/31/PCWorld-Internet-Explorer-7-Now-Available-for-Public-Download <6> let the games being <1> i need ie6 running ... and hope it improve stack overflow thing for js <6> i'm just itching to drop ie5 support ; <6> ) <8> is this the same version that was available for betatesters earlier? <1> this is b2 <9> elseif (b1 > b2) { alert('Il n\'y a pas ' + b1 + ' items enlever. Veuillez choisir un chiffre entre 1 et ' + b2); } <9> it gives me an error <9> in the elseif () <9> it says it miss a " ; " <10> use "else if2 not "elseif" <9> ohh okay <9> thanks <9> im a PHP programmer <10> thought you might be heh <9> ;) <8> btw a bit offtopic question -- is there an elif in Makefile syntax? :] <10> err dunno about that one <11> Hello <11> Someone could tell me how could i set an title="" value with js? .. document.getElementById(\'vot\').title="aaaaaaaaaaaaa"; something like that but isn`t .title <12> why in the world getElementById(\'something\') ??? <12> why those backslashes ? <11> because it is in an echo ''; <11> .. <11> doesn`t metter that, could you tell me how to change title <11> how it is correct? <12> title of what ? <11> of an <img <11> .... <8> the tooltip <10> should work fine <10> what's the url? <11> wait <11> http://82.79.71.112/vot/votare <11> try to hover on Ok button
Return to
#javascript or Go to some related
logs:
#london 12WHAT IS THE JAPANESE WORD FOR 'DIVINE WIND'?
#linux #apache philosopher warts frogs #php cybersource api 64 bit 'linux undernet arrogance' #php YM!Cam
|
|