| |
| |
| |
|
Page: 1 2 3
Comments:
<0> <link rel="stylesheet" type="text/css" href="/css/ie.css"> <0> <![endif]--> <0> i know of no way to do that within a css file though <1> html>body etc <2> [Torgo]: you are right <0> SufiBlade, ms says that will not work in ie7 <1> argh, MS only fixes stuff when you don't want them to :) <0> so screw it, i say <0> let ff bitch about nothing big <0> nodeSwap is fixed <2> what is the problem? <0> just put a try..catch around that line <2> hehheeh <0> *shrug* <0> worked <0> sometimes the simplest solution is best
<2> i try to trace what happen, just no clue what the hell is happening <2> yahoo mail beta is not supporting opera. <3> howdy <3> if anyone is familiar with bookmarklets (aka 'favelets') i've a question. I need to populate the current selected textbox with data from my bookmarklet <3> how about this. does anyone know how to 'star out' the text one types in a prompt() window <3> ie ***** <2> you can't <3> damn. sad. <3> **** <3> guess i'll spawn a new window with an input field as type p***word <3> probably saved me an hour fighting dialog :p <3> er, prompt() rather <2> that is what you should have done in the first place :) , but i am not sure you can read the value back form the p***word field, try it <3> yeah i should be able to. <3> i can p*** the val back to the parent <3> i don't want to display it <4> hello <4> i have a external js <4> with this sentence <4> is right? <4> document.formSeleccionObreroObraPasoUno.InsertarObreroObrabutton[i].disabled=true; <4> inside in a for <4> where formSeleccionObreroObraPasoUno is the name of the form <4> InsertarObreroObrabuttonX 1...n is the name of a button <4> but i have an error message <4> that says <4> that the form not have properties <4> whats is wrong? <4> hello? <5> hi <5> How can I add an element in a list please ? <6> hello <6> is it possibile to get the cursor position in an <input type="text"> ? <7> hi <7> how can I change some attributes of a HTML tag with javascript? (ex. to change the 'cl***="..."') <8> Hello is there a way to make an 'include' in javascript file ? <7> hey Pilum <7> can you answere to my question? :p <9> Dunno. <7> I'll repeat it since you were not on the channel <7> can I change the cl*** attribute of a <TR> by javascript? <9> I don't see why not. <7> well, I was trying to do that for quite a while now :( <9> You're probably doing obj.cl***='whatever', am I right? <7> no <7> should I make a paste to pastebin? <9> Oh. <9> Yes please. <7> :) <7> http://pastebin.com/594318 <9> Heh. <7> so? didn't I do it in the right way? <7> *did <9> Change to table_row.cl***Name='somecl***' - might be wise to change the name of the cl*** you use too. <7> :) it works by that <7> the only thing it still bothers me is that it does not modify the actual HTML document (I was thinking that it will also do <tr cl***="newCl***" ...>) <9> If you want to modify the document then you need to do it serverside. <7> :| <7> that's what I wanted to ommit :D <7> not to send & recieve from the server each time a row is selected <9> So why do you need to change the document? :-)
<7> well, because I need to signal the server which row is selected, but not on the row_click event ;) <9> You hardly need to change the document to do that. <7> then I could just verify on the server side, which <TR> has the cl*** set to "selected" then I'm done :p <7> you mean to keep a hidden field and update it from the script? <9> That's one way sure. Would be more efficient. <7> Pilum, is there an easier way to have a javascript function called when a table row is clicked then setting the onclick attribute for each row? <9> You could loop through them. <7> I was thinking to set the onclick for the entire table then I maybe could figure out the rest from the function <9> You could probably do that, but it'd be more complicated. <7> :) <10> I am trying to prevent a form from being submitted if my alert is triggered: <10> function checkpostal(){ <10> var re5digit=/[A-Z][0-9][A-Z] [0-9][A-Z][0-9]/ <10> if (document.Form3.zip.value.search(re5digit)==-1) <10> alert("Please enter a valid Canadian postal code.") <10> } <10> right now the form is still able to be submitted regardless of this error. <7> check out http://www.w3schools.com/htmldom/dom_obj_form.asp, and use the submit() methode ;) <10> I think my script does that already: onClick="checkpostal()" <10> I am wondering if I need to return something in my javascript to prevent the form from being submitted if the alert is triggered. <6> hello <6> is there a way to know the cursor position in an <input type="text"> ? <10> I am trying to use correct syntax here... <10> var checkpostal = [A-Z][0-9][A-Z] [0-9][A-Z][0-9] <10> if(form.zip.value == "" : != checkpostal) { <10> flag = false; <10> Is that correct for if field is empty or not equal to the sytax defined in the checkpostal variable? <11> what <11> that wasn't even *correct* JavaScript. <11> Hi ht311 <2> 'morning <11> ya... morning. <6> is there a way to know the cursor position in an <input type="text"> ? <2> yes <2> http://www.google.com/search?q=get+caret+position+input++javascript <12> http://www.affinitygo.net/ <12> what ya think <2> hmm, register pic with a guy in there? need a hotter girl in that pic <4> hello, guys, i have an external js that call a function , that have this line <4> document.forms[0].InsertarObreroObrabutton[i].disabled=true; <4> and i have an error message <4> that says that de form no have propertie <4> what is wrong? <0> check your spelling/case, check your loop boundaries, make sure this is firing after the page has fully loaded <4> i declare the call of the fucntion is a while (in html code) <4> of course that the fucntion is call after the page has fully loaded <4> should i p*** a reference of the form? to the external js? <4> can i copy here my fucntion?, is few lines <4> 5 <13> Evan Dando? <9> Who? <13> [13:50] * CHESU has quit IRC (Quit: Abandonando) <13> http://www.evandando.co.uk/ <14> So, newbie question here... How do I go about loading an XML file as an object via JS? As in... what terms should I google for a tutorial? <2> I don't know that Crockford is working for yahoo? <2> xmlhttprequest <14> Thanks. <15> it used to be called xml-rpc earlier <13> also http://www.quirksmode.org/dom/importxml.html <2> http://www.javascript-channel.com/Wiki.jsp?page=Ajax <14> excellent... thanks for the help. <14> very cool. <14> thanks again. <13> well i'll be, the page was useful. <0> fancy that <2> hehe <13> too bad all the .../Wiki.jsp?foo links will be no good after this weekend. <16> hello <13> unless i made a dispatcher disguised as the Wiki.jsp hehe... bah <16> does anyone know how i can get the value of an asp variable to javascript? <0> how about writing it in your output? <9> Write it to the output. <16> can u give me a sample code? <16> i dont know javascript much
Return to
#javascript or Go to some related
logs:
#MissKitten #linux #linux undernet #oslo #mirc public_html .htaccess allowoverride none #c++ #php #skype ethiopian restourant
|
|