| |
| |
| |
|
Page: 1 2
Comments:
<0> hi <0> anyone can tell me how i decode this script? <0> <SCRIPT>l1l=document.all;var naa=true;ll1=document.layers;lll=window.sidebar;naa=(!(l1l&&ll1)&&!(!l1l&&!ll1&&!lll));OOO0=new Array();OOO0[0]=' <1> replace the var names with something meaningful :P <0> after ' its the encoded script <0> <SCRIPT>l1l=document.all;var naa=true;ll1=document.layers;lll=window.sidebar;naa=(!(l1l&&ll1)&&!(!l1l&&!ll1&&!lll));OOO0=new Array();OOO0[0]='%<%!%D%O%C%T%Y%P%E% %H%T%M%L% %P%U%B%L%I%C% %"%-%/%/%W%3%C~%D%T%D~~~\r%4%.%0%1% %T%r%a%n%s%i%t%i%o%n%a%l~%E%N%"%>%\r%\n%<%h%t%m%l~9~;%h%e%a%d%>%<%s%c%r%i%p%t%>~,%p%=%\'%T%h%i%s% %p%a% <1> there's nothing to decode... the only thing 'encoded' are the var names <2> don't flood here, and you won't get help for this kind of question even people are fully capable to understand what it is there <1> that too :) <1> in any case, all you need is a simple text 'replace' op <1> to make it orders of magnitude easier to understand <0> can u tell me? <0> ah <0> well <0> nevermind <0> thanks
<1> feh <1> and howdy, ht311 <2> still detecting .all and .layers, without reading further, I am sure it is a lame script <2> hu <2> hi <1> what baffles me is that someone went thru the time of (hopefully) obfuscating the code <1> I hope to god nobody uses vars names l1l and the like on their own <1> any of you know if FileSystemObject.OpenTextFile's 2nd param can be a combination of the possible values? <1> ie, I want to open a file for reading AND appending <2> use | for that kind of param <3> hi all..have a js question.. <4> really <3> I'm working on some php stuff and am using a javascript popup which would allow me to enter data into a field..what I can't figure out is this: once I p*** the needed information to the popup, I should then enter data into a form field on the popup. When I click the submit button, how can I close the popup and force it to send back to the original page? <3> and by send back I mean, force the next script to run in the original window instead of the popup lol <3> wow. didn't realize it would work that way. Thanks for the help *sarcasm* <5> hello, how do i capture a keycode after i press the alt key in IE ? <5> if (window.event.altKey) { alert(window.event.keyCode); } doesnt even give anything :( <2> http://www.quirksmode.org/js/events/keys.html <2> event.altKey works <5> awesome <5> thanks. <5> :) <6> <3 bitlbee <7> hello all <7> hey guys <7> I've got a problem with a AJAX query <7> i'm sending a request to create a channel which name is "lonor" <7> with FF, that works <7> with IE, it converts the special chars into stupid symbols <7> and that crashes my code <7> any idea?* <4> yeah happened with me too...someone told me its got to do with encoding <8> Convert the chars back. <8> urldecode() if you use PHP. <7> i found actually encodeURIComponent <8> That's a JS function though hehe. <7> yeah it is <7> but that was because of JS <7> now i'm just forcing the UTF8 <7> and that's fine <7> any good script to get a nice contextual menu (right click) on a link, please? <8> Custom contextual menus are not nice at all imo. <7> yeah but in this case, that will be nice <9> I have www.anadrago.com working the scroll bars and www.danielalexandre.com not. I'm still doing experimental trials with it to understand the first. any hint? <8> Writing up-to-date HTML and legible JS might be a start... <9> Pilum: you are so funny <8> Actually I'm dead serious. <8> Your HTML looks like it was written in 1996. <9> I know what you mean <10> Hello <11> hi <10> can anyone take a look at http://www.maxinjapan.com/map and tell me why the textlinks don't work? Am I calling "map" outside of it's scope?? <8> Firstly, never put "javascript:" in your code <10> well a href="#" onclick="blah()" resets the page <8> <a href="#" onclick="blah(); return false;"> doesn't. <10> al return false. let me modify that right a way <10> ok, done <10> doesn't reset the page, thanks :) But for the map object problems, any ideas? <8> Error: map is not defined Source File: javascript:map.panTo(new GLatLng(31.452837850186818,131.37617468833923)) <8> Line: 1 <8> Must be outside the scope then.
<8> Ah yes. You define map in the load function. <10> ah dammit <10> how to make it global? <8> Define it outside the function, and initialize it inside. <10> ok <10> ok did that and now the map won't show up <10> ah ****, put it in the header <7> Erreur: a has no properties <7> Fichier source: http://maps.google.com/mapfiles/maps2.59.api.js <7> Ligne: 47 <7> sorry the tis stupid french :))) <7> -tis <10> well, I doubt google has an error on its javascript :) <10> So basically what I have done it I removed the onload in the body tag and added it manually in the first line of the page body. the object map should be global now but somehow, it doesn't work <10> no error on load but no map displayed <10> **** <6> cool <12> hello all! <2> hi <12> I'm here because I'm looking for support on JS Cruncher. <12> Am I in the right place? <2> may be, but the JS Cruncher master is not here yet, I know more about domapi than js cruncher. <12> so there are few chances you can help me with a "activation failed. support code:99" message? <12> But you seem to know when the JS Cruncher master will come, don't you? <2> no idea on that, sent an email to support. he respond pretty quick. btw, he is not in EST. <12> all right, thanks nonetheless. <13> Hello again! <2> hi <13> How can I identify the JS Cruncher master? What is his nick? <14> [torgo] <2> back <13> thx <14> [torgo] is the only person who supports domAPI and js cruncher <2> I can help answer domapi question as well <14> yeah <14> ht311 can <14> he is god <14> lol <2> ;) <14> screwed that one up <15> I've got a small tweist here. I've got a page with 3 divs, and they've got theire own id, with a CSS (#id) wich decripes their layout. But when i try to access it with alert(document.getElementById("div").style.top);, i get blank return, like the div isn't ***igned anything. anyone know why? <16> you can't get it before you set it unless you use inline style <16> you can get the offsetTop if that helps <15> i can't get offsetTop either.. <2> document.getElementById("div").offsetTop <15> i've got a <style> tag in the top..my div tags in the body, and a javascript accessing the divs at the bottom..why doesn't that work? <16> you did just .offsetTop not .style.offsetTop right <15> not style.offsetTop..i know.. <15> :p <2> then you did something wrong. alert( document.getElementById("div")) <15> yeah i get the object.. <15> but it work fine when i apply the style directly to the div, with the style attribute.. <2> offsetTop must return something then <15> it returns "" <2> any url? <15> sorry, its on my local machine.. <15> behind firewall.. <15> got a waste bin? <15> paste bin i mean:p <15> ht311, http://www.tuxcore.net/public/ <15> it's kind of messy code right now..just trying som drag and drop thing..and trying to figure out the offset and event handler.. <15> when you click on the red box, the style.top should appear in an alert.. <15> but it's blank.. <16> hmmm if I do javascript:alert(obj.offsetTop) I get "10" <2> line 81 , object don't support this property, just happen when load <15> there is no line 81.. <15> RoBorg, what browser? <16> FF <2> and in IE too <2> ... <15> RoBorg, dammit..it works for me now..wtf..i tried it before.. <15> *confused*
Return to
#javascript or Go to some related
logs:
#linux the nautical term for a distance of three miles par la cur #php #c++ crakcuri #linux philipinnes sex #linuxhelp #linux
|
|