| |
| |
| |
|
Page: 1 2
Comments:
<0> you have return false? <1> yes <0> hm... don`t know... maybe a cookie but is not soo simple <1> cause i need allow var one and var two to be ok <0> i think it can be resolved more quickly but din`t know how <1> ok.. <1> a solution is a settimer but..i dont want that <1> better solution is like : if cookie is true, reset, else do nothing <0> yea... <1> but, i dont know how.. lol <1> I'm not a programmor.. <1> er <0> heh.. :) <1> did u know where i can get help ? <0> me neidher <1> and, scuse my poor english ..
<1> im form Quebec lol <0> b i remember that are two functions writeCookie and readCookie <1> yes me too.. but, how to fix it togheter lol <2> I like Cookies <3> anyone know of a good JS inspection tool for IE? my site is perfect under firefox, but i get a few errors an IE and i'm not sure why... <4> perfect as in you see no error in js console? <5> what is the cl*** in a submit button? <5> what does it mean <4> that is where you set the css cl*** name <6> it's probably reffering to the csss cl*** <6> *css <3> ht311, correct... absolutely not errors or warning in the FF JS console <4> well, turn on the error reporting/notifaction in the IE advance option, it tell you around which line have problem. usually is the event handler code you make it too specific for ff <4> if you have the visual studio or microsoft script editor , and you launch the debugger <4> or get the crappy ms script debugger form the web site <3> the line it gives me is where i include my JS file, but doesn't happen until a specific function is ran <3> that narrows down the problem, but still not sure whats wrong with the functions in question <4> throw in a lot of alert <4> it will help narrow down <3> ah, good idea <3> i know what you're saying <3> just so i have it, know where the MS script debugger can be found? <4> asj google <4> s/ask <3> found it <5> Weird, I get a message that this object does not support this method : WebBrowser1.Document.Forms(1).submit but for forms(1) this is a submit! It is a secured page https: ...anyone can help? I don't get it <4> don't name you submit button as submit <5> ht, it's not my button <5> it's a X website and the name is submit <5> so I can't change it <4> the submit button has an id? <4> or the form has an id? <5> no:(! <4> why there is others poeple form in you page? and why you want to submit that? <5> because I have to parse some website after going in the member session <5> it's weird <5> it work well with google.com submit button that has a different name but not with this one <4> not much you can do, we don't recommend people messing with other people's stuff <5> why? <5> the program miss with it like a human <5> it just use the functions of the stuff <5> don,t u think? <4> no, you are trying to make it work as not supposed to, you are hacking it <5> there is a conflict between the name and the action of submiting? <4> it is a conflict of the name "submit" and the submit() of the form, seem it is a good way to stop some people <5> hehen, I think you could use a program to use the objects of a website X like a human would do if it's for personal use <5> I don,t see anything wrong here <5> like a hotmail email checker <4> it is nothing wrong for other's try to stop people like you <4> if you can hack the hotmail email checker like that, you can fish out email address and spam people <5> if you have bad intension you can do alot more <7> ht311 : unignored <5> anyway, enough moral thx for the tips <7> np Balty <5> on a secure website is it normal that I can't access the member page when it's in a frame but I can when it's not!? <5> !ping <3> this is weird... on the local copy of my website i get JS errors in IE, but when i put it on my remote host, I don't get the errors anymore. Could someone check this site and see if they get errors in IE? <3> http://www.linkleaf.com/linkleaf2/index.php?username=test&p***word=test&leaf=2 <3> i was getting errors when trying to use the edit or tag features under IE <3> please not that many features on the site are not implemented and I know they don't work. i am only working on the edit and tag menus right now <3> the errors would occur when saving the information
<3> *please note <5> I want to msgbox the total link that start by www.test.com/test1?8 ...how can I? <5> can I find the total link <8> Hi everybody <8> How are you today? <4> hi <8> :D <8> Sory, i want to test this program <4> the java irc client/applet? <9> yes, sory if it trouble you. <4> not really, is ok for now <9> This program is very fast and have an interface nice. <10> hi@all <11> hi .. wonder if someone can help me .. i've written a little ajax app..but am having problems with key.events... <12> hi everybody <12> anyone listing? <13> when i use XMLHttpRequest to send POST-request, my "+" sign disappears, tried with escape() and encodeURI(), but none of them works like i hoped.any suggestions?= <14> FF doesn't seem to fire mouseover/out events on elements higher in the dom then 'this' when the mouse is down, anyone knows something about this? <15> hello everybody <15> please help me, i encounter an error in javascript "invalid characters" in <input type="button" onclick('data.txt','targetdiv');" <15> how will i solve this <15> please help <16> onclick="functionname('param1','param2');" <15> <input type="button" onclick = "getData('data.txt','targetDiv');" value="click">, yah, i wrote like that but still get "invalid character" error <16> That's _not_ what I wrote. <16> You get that error in the js console though? <15> i tried that last thing i wrote but still get an error <16> And your getData function? <15> XMLHttpRequestObject.open("GET",datasource); <15> XMLHttpRequestObject.onreadystatechange = function() <15> no problem with the getData(datasource, target) {....} <15> sometimes i get error on XMLHttpRequestObject.open("GET",datasource); invalid parameters <15> i haven't run even a single simple code in AJAX, thats i intent to do, loading external text file content using Ajax <16> Try using POST. <15> still nothing happens, but its alright, thanks for your help, i'll quit studying AJAX, no good resource for this in the internet <16> Lol <16> There's dozens of good resources for it. <15> hehehe, i've been searchin for weeks but found nothing...do you know some good sites of it? <14> w3schools no good at it? <16> Looks good enough. <16> http://www.w3schools.com/ajax/default.asp <15> thanks <14> how can you look for a ajax learning source and not stumble upon w3schools... i'm curious for what search terms he used <14> "ajax -learn -tutorial -study -explain" probebly :) <13> TheUndefined, good one:D <17> I want to upload a file using ajax. It seems like the best way is to have a form in an <iframe>. Are there any JS security gotchas I should know about (the iframe will point to the same server as the ajax page) <17> ? <16> You don't upload files with ajax. :-) <16> You often use an iframe as you suggested. <16> But that's not really related to ajax and when it's on the same server there should be no issues at all. <17> good to hear. Thank you :-) <7> sukotto : do you believe in the Cylons? <17> ? <7> Cylons <7> they're a "race" of robots <7> And thus I clothe my naked villany <7> With odd old ends stoln forth of Holy Writ, <7> And seem a saint when most I play the devil. <17> and this relates to javascript how? <7> thats what I say to people im gonna kill <17> alrighty then <2> whats an iframe? <7> its a frame that is inside a mainstream window <7> document <2> but that old school.. no one uses frames <2> they are supposed to be ugly no? <17> Ugly yes, also a security vuln and difficult to make accessible <17> but I'm planning a special use for mine. since Ajax typically can't handle direct file uploads, I want to make a hidden iframe with it's own form. In that form will be the file upload <14> VaranG|aN: you're talking about the <frame> frames, not the <iframes> frames <18> Hi, A very bacic question... if I have a form named "form" and a field named "field[]" do I need to do something special so that the syntax document.form.field[].value works ? <19> lol, now what would you name it form and field? <19> well, try it out, see if it works <18> it doesnt... that's the point
Return to
#javascript or Go to some related
logs:
#chatzone devilpimps #linuxhelp #linux #linuxhelp #MissKitten leileen montesin #linuxhelp #chatzone #chatzone
|
|