| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13
Comments:
<0> So in that case, why not also allow <style src> in the body? <1> Well, CSS doesn't have the concept of being parsed and executed and things existing at a certain point with a certain value like script does <0> true .. I just want it neater damnit :) <1> Everything external should be object! <1> Widgets should be built from small collections of microelements! <1> INPUT! ARROW! SCROLLBAR! <0> heh <0> True enough though <2> i'm cooking up some sweet semantic staked object code (click a tab, the content changes to that tab as if sorting through a stack of cards, or so the metaphor goes). it works great for fixed-width tabs. however, i'd like to set it up so I can build the width of the tab depending on the length of its contents. who's up for some fun? http://www.webdeveloper.com/forum/showthread.php?p=609798#post609798 <0> Use the default select widget, mix in a text input and you have a proper combo <1> An actual slider control, optionally attached to something else, would be neat. <0> Yup <0> Mine *almost* works <0> (div only big enough for it's scrollbar to show ..) <0> The problem is getting it to interact with a value
<0> At the moment it can get a bit mixed up: update the value and the slider moves which causes the value to update which causes ... <3> Hi. I am trying to put a menu pop out to the right from a button that is an image <4> hey is it possible to diable the view image? <4> disable* <3> the customer wanted the image <5> hello, i have a problem with an implementation <5> http://erxz.com/pb/2363 <5> I want to : on mouse over some element display some options inside this element (fieldset), the problem i have is when the mouse is over this buttons and options the mouse goes out <5> collapsing the options, any ideas how to manage this <3> I am trying to have a menu pop out to the left from an image. http://www.allisonscandlecorner.com at the information image. please email jason.sands[at]gmail[dot]com if you can help <0> How do I get the available height in IE? <3> caotic <3> i receive your message <3> go to #caotic <6> is there some way for code in a javascript file to obtain a document-relative URL to its own location? <6> I am trying to use a technique which involves javascript inserting a <script> tag into a document, which references another javascript file <6> but I don't want to hard-code the location of my javascripts into the javascripts <6> they might not always be under /script/foo <0> Use a relative link <7> uhmm.. how do I call an item in a queue? <0> eh? <0> What's a queue? <6> Woosta: any link I insert in a <script> tag will be relative to the document <6> Woosta: I need one relative to the location where I keep my scripts <8> Is it possible to brighten an image with JS? :D <9> hai <8> heylo <8> how ya doing? :D <9> why this is not working ? var selection = "document.form1.sel1"; and var selection = document.form1.sel1; <9> i am fine, thanx. you ? <8> I'm great :D Thanks <9> i just want some alias for document.form1.sel1. <8> Why type of control is sel1? <9> select <8> Make sure the HTML for the component is: <input type="select" id="sel1" /> <9> ah <9> i'll try thanx kai_wp :) <9> why name not working ? <9> still not working :/ <9> think i am gonna use write. thanx anyway :) <8> Actually <9> yeah ? <8> I think it should be: var selection = "document.form1.sel1.selected"; and var selection = document.form1.sel1.selected; <10> no it shouldn't <11> ? <11> ahemm <11> lylo: what are you trying to do again? <10> document.getElementById("sel1") <11> w0t? <8> Sorry I'm bad at JS. :P <12> whats poppin, CP? <9> CommandPrompt, making some alias for document.form1.select1. <11> da-drew: my eyeballs with this heat :), 95f at 10pm :( <12> can you fit in the fridge <8> Nope. <12> thats what i do when temps get that high <8> Well if I take everything out. <8> I could fit in the freezer. <11> da-drew: unfortunately, no :)
<9> Frb, thanx for that :) <11> lylo: var crack=document.form1.select; <12> cp, you're good at php, no? <11> then use crack :) <9> CommandPrompt, that not working. <8> Is it possible to brighten an image with JS? :D <9> i already tried that <10> kai_wp: only in IE <11> da-drew: I have started it, but just on the early chapters :| <12> kai: you can change the opacity <12> but that doesnt really brighten it <8> I guess that would work since my site has a white background. <12> or you could overlay a png <12> semi transparent <11> lylo: it must :P~ <8> I just don't want to have seperate images for an image thats supposed to highlight when you roll your mouse over it. <12> kai: check this out <9> CommandPrompt, nope. already tried that <12> http://www.drewtowers.com/index2.php <11> lylo: right, so I heard, funnily enough, it does work for me, or it has :| <11> so, something is UP on your neck of the woods <10> `rollover @ kai_wp <13> kai_wp, rollover: http://wellstyled.com/css-nopreload-rollovers.html , http://devilock.mine.nu/pixie/ <11> and yes, I'm aware document.getElementById() is suggested, but formname is not deprecated <8> da-drew: How did you DO that?! :o <12> just changed the opacity on hover <8> O.O Ok thats what I wanna do. <8> But I don't see and JS in your source. :o <12> event listeners <12> but its not js <12> its just css <12> hover <8> Oh I get it. <8> I'll try it. :D <9> you can use /* comments */ , right ? and // comment ? <12> /* */ = css <12> // = js <11> in js you can do both, in css just /* ... */ <10> C# does both as well <10> php does both and # iirc <11> also C and c++ and java methinks <9> C only /* */ . C++ both <10> C99 does both <9> it did work. the problem is i forgot to specify src="file.js" :/ <9> ugh <14> Is there a way I can change the Title of the window that pops up from this code? "onclick="if(!confirm('Are you sure you want to delete this contact?'))return false;....." <15> no <14> oh, ok <14> thankyou <9> should i use var keyword when defining var outside a function ? <9> or is it deprecated ? <0> Never <0> In fact it's even more useful in 1.8 <0> And yes, you should use it <0> Use it everywhere <9> ok. thanx :0 <9> :) <16> setattribute('onblur','editBox(this);'); doesnt work in IE <16> how do i workaround that? <17> it's setAttribute <0> NOOOOOOOO <17> but i'd do obj.onblur = function () { editBox(this); }; <16> Raevel: typo.. thats doesnt work either <16> Raevel: i will try that one <0> yourElement.onblur = function(){ editBox( yourElement ) } <0> NEVER script-as-string <18> onchange should work in a checkbox input should it not? <16> Raevel: that worked... i guess i shouldnt use setatribute if i want to use IE? <17> sflash i' <17> sflash i'm pretty sure i've seen it working, but i see no reason to use setAttribute <16> Raevel: it works on some things but didnt when i used onblur. Worked fine in firefox. <18> why does onchange="function();" not work for a tick box? <18> and on click behaves odly <16> Has anyone had any problems with onblur not running when you click on something else and text cross hatch is not in it?
Return to
#javascript or Go to some related
logs:
gentoo madwifi networkless #python mount my book linux Segmentatio fault chroot centos memtestx86 ubuntu detect cdrom infintesmals
#css yango definition os.popen mod_python
|
|