| |
| |
| |
|
Page: 1 2
Comments:
<0> i got this code to resize the browser window, but it doesnt work.... http://html-channel.com/pastebin.php?id=3 <0> can anyone help me? <1> http://html-channel.com/pastebin.php?id=4 <1> That method may be disabled by the user fyi. <0> it doesnt work... http://silviu.t35.com/radio/ <1> Just a FYI: if you want to use variables, this is more than sufficient: http://html-channel.com/pastebin.php?id=5 <1> That one works here, RenkO. <0> i just edited some other code.. that's why i ended up with variables <1> Although normally I don't allow scripts to resize or move my window. <0> so it resized your window? <1> Yes. <1> And moved it. <0> do you know y it doesnt work for me? <1> Perhaps the functionality is disabled in your browser. <0> any idea how i can change that? <1> Which browser?
<0> ie 6 <1> Not sure. Should be somewhere under security. <0> what browser do you have? <1> The one I primarily use is Firefox, but I have Opera on this system too and a windows PC with IE in reach when I need to test in that browser. <0> in which browser did it resize? <1> Firefox <2> hi all..how can i hide top frame? <2> vry informative <2> nise <3> heh. <4> if I were an op that guy would be so banned <4> >:D <4> guess knowing his addy is the other half of this equation... <5> no harm is done since no one looking ;) <6> I've got some problems, my script isn't working in FF, but works in IE, and I have no clue why. <5> check the javascript console <5> any url? <6> http://storm.nupoison.com/console.php?sys_id=2 <6> or simple version http://storm.nupoison.com/gameLadder.php <5> i don't see any script error <5> what part is wrong <6> its not workin, lol <6> not exactly error, just not workin <6> open same pages in IE and you see it works <5> no innerText in FF <5> just .text <6> would that work in IE? <5> yes <6> nice <6> lower case t? <6> nice, worked <6> i have another issue, if thats okay, more of a luxury thing <5> just ask pls <6> both pages are updated with that fix so the options will show <6> umm, when they choose a game <6> then go back to select a game <6> it should disappear <6> and sometimes it does <6> sometimes it shows undefined instead <6> see what i mean? <5> you need to test your response and check your split and stuff <5> hi furtive <6> i don't understand why the hidden attribute doesn't stick tho, is the response reverting it? <5> alert alert and alert <7> hy <7> how can i make that on a button's click event a window called 'basewindow' to close? <7> ?? <1> You need a reference to the window object. <7> can anybody help me? <7> yes <1> The name isn't a reference. <7> how can i do it then? <7> :( <1> Open with var windowRef = window.open(....); and close with winowRef.close(); <7> i tell you what i have <7> i wave a list with enrties in db <7> i want to edit one <7> of them <7> so it opens an edit page with window.open <7> i want that when i push save the page with the list to get refreshed
<7> is this possible? <1> A save button in the opened window I presume? And you want it to close the window as well? <1> onclick="opener.location.reload(); self.close();" <7> yessss <7> thank you <7> it works <7> perfect <7> thank you again <7> have a nice day <8> Is the HTTP POST list processed by getParameterValues() comma delimited? <1> Isn't that java? <8> yes, but I'm sending from javascript <1> So? <8> ...Do I need to send "name=bob,pam,fred", or "name=bob&name=pam&name=fred" or what? <1> Possibly. <1> What do you mean sending from javascript? Ajax? <1> If so, then send it as a regular query string. <8> ok, thanks <9> I'm having a lil problem, maybe somebody has an idea on how to byp*** it <9> I'm dynamicly adding iframes to load stuff in them, now, the thing is that when I press back button the last modifyed iframe goes back <9> and I don't like that <9> I want the back button act diffrently depending on some stuff <9> any way I could change it's behaviour? <9> I would like to be able to create my own stack <5> nope <5> try destory the iframe after you finish <9> a lot of destorying... :) <9> that's a good idea tho <9> but I'll have to change a lot of code <9> yellow ballon: low virtual memory :P <9> hmm... I think I'll delete it and then I'll add it back <9> so I won't have to write additional code for onsubmit and stuff like that <10> hey... <10> do any of you guys know a good website which has free javascripts? <5> brainjar <10> cool, thanks! <9> why do ppl add suport for stuff in theyr programs, if they can't make them work correctly? <11> I am working on validating a form on submition. the form contains several radio buttons and tied to each radio button is a combo box. I can validate whether or not a radio has been selected or not but i need to have it say if radio1 then make sure combo1 has been selected if radio2 then make sure combo2 etc. can anyone help? <1> if(radioRef[i].selected) { // do something } <1> Where radioRef = document.forms['formname'].elements['radioname']; <11> Pilum I think i need to explain this more because I do not think it will be that simple. <1> Of course not, that's just the basics. <11> the form is populated from an ASP query so the combo box name changes. The radio buttons are all named rFunction The combo boxes are all named the same value of the radio buttons. So if rFunction value=123 then the combox box name is 123. <11> so I need to get the value of the rFunction before I can check to make sure the combo box has been selected <11> or... hmmm. maybe it owuld be easier to just give an ID to each one. So the first rFunction's ID would be 1 then 2 etc and the combo box ID would be 1a 1b etc so no matter what the ID would be tied the same no need to look it up <11> not sure if tha twould help though <1> No, your first plan should work. <1> var mySelect = document.forms['formname'].elements[radioRef[i].value]; <11> ok well i can look up the value of rFunction cuz to test it I just alerted the value which changes on sumbition <11> ok <11> i get the value of mySelect but how do I then check to make sure mySelect has a value? <11> thats where i am stuck at <11> got it <11> thanks for your help <1> mySelect.options <1> mySelect.options[mySelect.selectedIndex].value <12> hey really quick question: is there any way of NOT sending some form data? <1> Don't submit it? <12> but i need some submitted <1> Remove the elements you don't want? <13> how about ignore the ones you don't care about? <12> A B and C , A + B = C and A and B are user fields. C is what i want to be parsed. but if i parse A and B too it breaks the interface script <12> so i need to catch and remove them <12> any ideas? <5> hmm, don't don't understand, when i process the form data, as [Torgo] said, i only look at the one i want to know <12> but it's part of e107 website system.. i'd end up having to rewrite the whole thing to fix it.. so i can only control the input <5> then do as Pilum said ... <12> ok how do i do that? <12> if you mean remove A and B i can't because i need them to find out C <5> http://www.mozilla.org/docs/dom/domref/dom_el_ref54.html <5> do that after you find out C <12> umm this is far to complex .... i don't understand much of that page <5> another reason I should get a raise
Return to
#javascript or Go to some related
logs:
#slice #AllNiteCafe #linux #AllNiteCafe #MissKitten mysql database connection too late use database england-macedonia
#linuxhelp .. 0 0 0 o N[[ Allah Akbar ]]N o 0 0 0 .. flocinolol prospect
|
|