| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8
<rofl> Harry Denman was arrested for something and I got word of it. I tried to interview him in the jail and he refused to talk, without a lawyer present. He will not provide any useful information for these two investigations. I have not been able to locate Mr. Thompson. I have not physical evidence which can connect either of them with your stolen property or damaged computer. I have not witnesses to the crimes. I have not recovered any of th <rofl> Thank you for your cooperation and help, up to this point. <rofl> Bill Gallauer <rofl> Tempe Police <rofl> Criminal Investigations <Woosta> wtf? <fatbrain> Is it just me or did we all leave #javascript briefly and automagicly joined #trivalnonsensegibberish ? <Woosta> you too huh? <Woosta> Though I think I got magicaly joined to #Idontunderstandtheslanderlaws <factor> heh <factor> or #twilightzone <rofl> thats right, run it into the ground <csaba> is there a known bug with IE concerning the onchange event? I have a javascript function that needs to get executed whenever a combo box's value changes... this works fine under firefox and opera, but not IE <csaba> ah i figured it out... didn't know IE can't read a combo box's value, but instead i have to use selectedIndex.. :/ <source> me to correct it, pls: http://rafb.net/paste/results/sounQM14.html <source> Who is familiar with drag-n-drop objects on the Web? DHTML just for MSIE. Although the original script does work, but it's still 'incorrect'. Help me to correct it, pls: http://rafb.net/paste/results/sounQM14.html <Woosta> please stop cross posting. Pick one channel, the most appropriate, and stick with that <shale> hey i need a reminder about syntax.... how do i put a variable in a document. object line? <shale> i have document.formName.elements[i[.value and i need to make formName a variable instead of the literal name of the form... how do i do that? <shale> please :) <[jrl]> Anyone know why Firefox is putting the text i ***ign to innerHTML inside <a></a>? <xin|work> [jrl]: because thats the element you've selected? <[jrl]> xin|work: i'm setting the inside of a span, not an a <[jrl]> xin|work: and its making it <a>text</a> <xin|work> hur <[jrl]> xin|work: span.innerHTML = "10"; alert(span.innerHTML) => "<a>10</a>" <xin|work> nfi sorry <[jrl]> xin|work: yeah, thats where im at <xin|work> maybe because an A element is an inline element and not a block element <xin|work> maybe.. <[jrl]> xin|work: if i do just a simple page, it doesn't do it though <xin|work> what I said <[jrl]> xin|work: ?? <xin|work> nevermind <Logomachist_> That looks weird <[jrl]> it is weird; especially since i cant recreate it <[jrl]> beyound where its happening <Sotho> are there any good libraries/frameworks for parsing XMLDocuments? <Sotho> other than the default methods <Woosta> half a dozen .. but why? what do you need? <Sotho> for instance, i want to find a child of a given element by tag name... there is getElementsByTagName, but i believe that searches the entire document, not just the direct children of a given element <Woosta> nup <Sotho> eh? <Woosta> someChildOfDocument.getElementsByTagName('blah') <Woosta> someChildOfDocument.getElementsByTagName('blah')[0].getElementsByTagName('foo') ... <Sotho> doesn't el.getElementsByTagName('blah') search through ALL the children (including grandchildren, etc) of el? <Woosta> yes it will .. you only want direct children? <Sotho> ideally, yes <Woosta> loop over it then .. <[jrl]> is there anything wrong with doing <a><div><span></span></div></a>? <Sotho> woosta: gotcha, thanks <Woosta> yes <Woosta> <a> can't contain block elements <[jrl]> Woosta: thanks <Woosta> `html a <RTFS> html a: http://www.w3.org/TR/html401/struct/links.html#edef-A <Myrth> hi, how do i change cursor unconditionally? <Myrth> meaning not when i'm over some object <Woosta> *{ cursor: hand } <Woosta> ^^ css <Myrth> in javascript <Woosta> not sure .. check the dom <Woosta> `js domref <RTFS> js domref: w3.org/DOM/ , http://developer.mozilla.org/en/docs/DOM , www.mozilla.org/docs/dom/domref/ , www.zvon.org/xxl/DOM2reference/Output/index.html , www.krook.org/jsdom/ , www.brainjar.com/dhtml/intro/ <Myrth> ok document.body.style.cursor worked.. <Myrth> thanks <matrix79> is anyone in here familar with those tribialfusion popup windows that **** ***? <Logomachist___> Am I still connected here? <Logomachist___> Ok good <matrix79> is anyone in here familar with those tribialfusion popup windows that **** ***? <grandma> hey all, wrote this script long ago (works in IE only) and am trying to get it working in mozilla. basically a window zoom/resize effect called on window.open. http://pastebin.com/406096 <grandma> any ideas? <grandma> the math is fine, but i think the methods aren't for mozilla <aalex> Hey, what do you think. Should I use DHTML or not for navigation ? if i use no alternative... <Yaeyama> hi, is there anything i need to be aware of for document.open() vs. window.open()? <Yaeyama> i have a cancel button with an onClick, <Yaeyama> and if i put onClick="javascript:window.open('cnn.com');" it opens cnn.com in a new window (as expected) <Yaeyama> if i change that to document.open, i get a blank, loading-forever page with my original page URL shown in the location bar :-/ <testleper> can anyone help me to defeat frame busting scripts that mess with the top.location 's of my frames? <testleper> it's for a legitimate rss reader <Woosta> From an event, in FF I can get E.currentTarget.form ... how do I get the Event's form (there is one!) in IE? <testleper> anyone? <Woosta> Anything you load legitimately has the right to be displayed how it wants to be displayed. You only have rights over your own content <testleper> but greasemonkey can **** with anything client-side, right? <testleper> i mean, it can just strip _top right off the doc <testleper> if it's a target, but what if it's actually in the javascript? <Woosta> It can't do it until it's loaded <testleper> like if(top.location != self){ top.location.location} <testleper> how do you defeat that? <testleper> er if(top.location != self){ top.location = location} <Woosta> I doubt there'd be a way you could <testleper> w/o disabling javascript <testleper> there has to be a way, by manipulating the condition that makes the change in the first place <testleper> but how to access top.location? <testleper> how to search and replace actual javascript within <script> tags? <Woosta> you can't. It's already comiled and run by then <testleper> what about p***ing it some value? <drphobeus> testleper, I ***ume you are trying to load external pages with your frame at the top, and some pages remove your frame. As Woosta says, it can't be done. You would need to go down an AJAX route and parse the html of the page you want to get that effecg <testleper> cool, i could do that <testleper> does greasemonkey 0.5.3 have gm_xmlhttprequest support? <testleper> this is weird <chino2> i have a question for you guys <chino2> i use document.getElementById('chatMsg').value = ""; to set a input value to empty after I have extracted the data <chino2> it works <chino2> but i get this wierd error in the js console <testleper> error? <chino2> "Permission deinied to get property xulelement.selected index' when calling method ns i auto complete popup::selected index nsresult nserror xpc js thre string location js frame " <chino2> i had to type it out something like that <chino2> threw strig <chino2> string <chino2> but i mean it works <chino2> just gives away that error that i have no clue what it means <testleper> http://www.xulplanet.com/tutorials/xulqa/q_pdenyucc.html <testleper> ? <testleper> http://www.insidedhtml.com/forums/viewConverse.asp?d_id=18109&Sort=0&t=all <testleper> ****inggoogleit.com <chino2> idk <chino2> it doenst' matter though right <chino2> its just some dumb error that doesn't mean anything ? <satsonic> hello <chino2> whats that function that waits for a certain ammoutn of time then executes a command but still allows other script execution to continue ? <Bebabo> setTimeout ? <testleper> essentially yes, chino2 <chino2> thansk <testleper> drphobeus is there any to do all that parsing w/o incurring the overhead of opening the page with something like readfile() in php? <testleper> i mean, when you src=boston.com it's their bandwidth... <b0at> That's why they don't want to be in a frame. <testleper> heheh **** them! <b0at> Firefox and Opera both have some form of RSS reading built in, fwiw. And they're not alone. <testleper> i'm going to read their damn news anyway <testleper> ? so what, i like my custom app. i'm trying to solve a particular problem, not trash the whole idea <b0at> The idea is flawed because it relies on external code to play nice <b0at> Unless you use a signed script, which has limited use beyond Mozilla <testleper> which is fine, i couldnt' get that to work... it erased changes to prefs.js when i restarted FF <testleper> seems like xmlhttpreq is a little primitive at the moment <b0at> How? <testleper> lack of XSS <b0at> That's part of every browser's security model. <testleper> 'cept IE! <b0at> IE doesn't have a security model. <testleper> :-} <testleper> and that's why we love it <b0at> If by "we" you mean malicious code developers, that's a possibility. <testleper> who's malicious? i'm magnanimous! <efkoj> hi, is there a way to know where you are dropping a div? <efkoj> i mean if there is an other div below it.. <erfalko> hi all, is there any way to know (maybe in an array) all the field in a form?
Return to javascript or Go to some related
logs:
Try setting Windows version to 'nt40' poker Greentryst
|
|