| |
| |
| |
|
Page: 1 2 3 4 5
Comments:
<0> .style.display="none" and .style.display="block" <1> how compatible is that? <0> extremely <1> looks good man <1> thanks <2> ht311 <2> http://www.neofuture.co.uk/bitchunker/index.php <2> heheh <2> i might leave the abilty to add silly characters in there <3> is virtual ? store in db? <2> yeah <3> that's what i think :) <2> ill AJAX the contents when its all working and i added some more features <1> sweet NeoFuture <3> you sound like a true web2.0 geek <2> oh dear
<2> that good or bad ? <3> good for business :) <2> bad for ? <3> heh, until drink some real Ajax <2> yeah hehe <4> one last thing. anybody home? =) <1> haha she's crazy <5> salutations matinales / morning greetings <6> hello <6> anybody there? <7> Yes <6> hi Pilum <6> do you know any script for making rotations-animations in js? <7> Depends on what you mean by rotations. <6> rotations of divs by degrees <6> like clockwise or unclockwise <7> I've seen a couple, but I can't remember where. <7> You'll probably have to ask google. <6> was searching there... but i founded more to rotate news (renew), not really rotate as i supposed <8> hello <6> hi <8> I have a page with frames <8> as example, I go to: http://mydomain.com <8> the index page contains frames and one page is http://www.mydomain.com/page.html (only example) <8> inside page.html I am setting a cookie <8> why it does not persist when I go again on http://mydomain.com ? <8> I am using the domain=.mydomain.com cookie property too <6> (cannot really answer... no experience with cookies... newbie...) dsl <9> is it possible to play that alert sound in javascript except from using alert(""); ? <9> or any sounds for that matter. <3> there is no grantee that calling alert("") will play alert sound, it is an os setting <3> for that i think calling flash to play a sound is a better solution <9> ok. <10> does anybody know how to do the links underlines like this in javascript? http://dipen.net <10> i did those with image swaps <7> Javascript is unneccesary <7> Use CSS <3> as i said, it is either image rollover or play around with css border <10> hmmmm <7> And put in a doctype declaration. <11> using DOM, how do i put dynamic HTML after an object? -- i have : var osel = document.getElementById("roll_"+pid+"_0");i want to put a dynamically created <selecT> after that ... <7> document.createElement() and obj.appendChild(); <11> do i document.createElement() or var newob = createElement() then append newob? <7> Both. <7> In a way hehe. <11> ok. <7> var newob = document.createElement('SELECT'); <11> then add the options to newob, then appendChild? <7> That would be smartest yes. <11> -- wait.. i have <div id='a'><select id='b'> do i append to the select or the div? <11> so i will make select id-c' then append to the select b, or the div a? <7> You don't append a select to a select... <7> You said you wanted to create a select, not that you already had one. <11> er. have one, i want to create a second one based on the onchange of the first <11> in the div element <7> Then you append it to the div of course. <11> ok.. <11> thats wher ei was getting lost... <11> ok.. so, now how do i find out how many selects ar ewithin the div.. i tried selct = divob.length; -but nada <3> divob.getElementsByTagName <11> iw ant to do a for loop to calc the total selevted value of each select in the div.
<11> k... is that then .length as well? <3> ("SELECT").length <11> for the length of the returned obj <11> is the SELECT case sensitive? <11> based on my tag <3> you get a collection of select element <3> nop <3> nope, any case should work <11> this shoudl all work in IE6/Firefox/NS6 right.. ? o dont care about older browsers.. just the new ones <11> sweeeet <11> is there 'manual' with all the functions somewhere? <11> liek php.net/func <12> how can i open a window using window.open method when the path that I want to open has a ' in it? for example window.open('http://test/folder's/test.htm') since there in that ' in the folder's it errors out. <11> ew.. you shouldnt use charectors like that in your heirarchy <11> i think you can URL encode (at least in php) and it should translate <12> i know however these folders are on network drives and its a virtual drive in iis <3> indolent: http://www.javascript-channel.com/Wiki.jsp?page=Links <11> thanks <3> kjk_work: %27 <11> i liek to RTFM, but all i could find was crappy how to alert tutorials <12> thanks <3> fyi: that is ascii in hex <12> similar to %20 for spaces <3> yup <12> ill give it a try and see what happens <12> darn still getting an error <13> ht311 <13> http://www.neofuture.co.uk/bitchunker/index.php?view=b <13> http://www.neofuture.co.uk/bitchunker/index.php?view=a <13> ;) <3> syntax error for empty folder, go fix it. <3> ;) <13> yeah yeah yeah <13> tiss only prototype <11> heh check out abigail... <14> u guys know of any program that tells me the motherboard model of a computer? <14> motherboard model and chipset.... <7> Device Manager <14> .... the motherboard model <15> wheres a site i can paste my code? <3> pb.html-channel.com <15> thx <15> im trying to change an image when the window loses focus, im using div tags to set the x.y i cant get it to work <15> any ideas? http://www.rafb.net/paste/results/EU3bZo79.html <7> Heh. <3> wrong: document[img_name].src <7> Don't document.write there <15> thats for a rollover image <7> Just use rollover code for it. <3> either use document.getElementById or document.images["name"] (not sure if this is still good) <15> pilum: use rollover code for onBlur? <7> Instead of document.write yes <15> ok ill try .. thanks <15> <- still learning: is this what you meant? http://www.rafb.net/paste/results/emoyA660.html <15> ::getting ready to get beats on the head with a fish:: <7> That looks ok. <15> whew <7> Although I would use document.images[ rather than document[ <15> doesnt work .. <7> Make that change then. <3> and having dup the titlebar in 2 place is not a good practice <15> can you show me what you mean? <7> document.images[imgname].src = imgsrc; <15> ht311 yeah thanks i missed that :( <15> ty!! <7> Oh yeah.. you need to change the id of your div. <10> tables ****! <7> Id... identifier. It identifies ONE element. It must be unique. <7> You have the same id on both the div and the img. <15> doesnt seem to be supported in safari weird ... <11> for loop in JS should look like for(i=1; i<=divlen; i++){ right? <11> cause it craps out <15> ok last time and ill stop buggin you guys ^^) <15> http://www.rafb.net/paste/results/iI9lC814.html
Return to
#javascript or Go to some related
logs:
start two programs +script instalar irssi en ubuntu madobor lolllllllll de mela #chatzone #java #AllNiteCafe WHAT LANGUAGE DOES OBRIGADO MEAN
multidimensional javascript array how to make alias to url in apache
|
|