| |
| |
| |
|
Page: 1 2 3 4
Comments:
<0> in Firefox no errors are returned <1> you have a url? <0> http://pastebot.nd.edu/604 <0> well actually our custom CMS is also available at opensourcecms <0> if you want I can let you know where it is... the version there is a bit more messy than the one we are currently using <0> the link to the demo is here http://opensourcecms.com/index.php?option=content&task=view&id=2112&Itemid=159 <0> the section which is having the problem is Links category <0> please don't look at the messy html code... it will all be fixed when we release the next OS version <1> links category? <1> which one i should click to get some error? <2> ht311, lol sometimes best pieces of codes are written by one guy <2> slackware is maintained by one guy :> <1> i agree, a small team is more then enough, i am the only guy controling my mvc on mvc thingy too <0> sorry <0> had to check in the other room <0> heard a noise
<1> i am knocking on your door :) <0> have happened spooky thing in houses around mine recently so... <0> in any case <0> into links category <0> click on order at the top of the table <0> and try to click in one of the arrows to move down or up <0> one of the categories <2> i don't believe much in large coders team neither <0> you can also add one more category <2> at some point more time is spent on communication than coding <0> I get this error Line 1: Error: Expected:';' <1> you should have tell me to login to admin site! <0> oooops <0> sorry ht311, thought they had only the admin area installed there <0> so it was until a while ago! <0> and it was with automated login, if I remember correctly <0> yep I am there now <0> yes, login in admin login <0> links categories <0> then Order, and any of the arrows <1> geeze, you loading a html page in script tag <1> of course it complaint <0> oh ****, I did not do the frontend... so I don't know exactly how it was done <0> so I need to redo it from scratch? <1> no it as for login <1> ask for login when you try to load that thing in script tag <1> the page i saw is login page in the src <0> oh yeah <0> there is a timer <1> you should try to get the script editor in office <1> it is a better debugger <1> and you can try to use fiddler too <0> fiddler? <1> search it <0> got it thanks <0> I have office preinstalled into the system <0> don't know if I can get the script editor <1> go into office setup, it is in common or share component, something with script editor, and there is script debugger checkbox <0> hmmm strange... I do not get the error in Opera... <0> did you get the error in that page? <1> you loading something inthe script age <1> tag <1> that request return a login page instead of the intended script <1> ie throw a syntax error <1> normal <1> noy a javascript issue <0> oh I understand <0> too bad there must be something wrong with my IE <0> I installed the script debugger and the MS office one too... now it asks me which one I prefer to use, but when it opens the debugger, there is nothing in it... some misconfiguration of IE? <1> it show me a html page <1> that is the log in <1> look at the fiddler request trace then <0> kk <0> thanks! <0> nn! <3> hi <4> anyone know how to set the columns of 2 tables to the same width? <3> 50%, 50% ... <5> How could I get the height of Document ? <5> document.body.clientHeight is returning the Height of the Client area in which document is visible.
<6> hello, i'd like know how can i make a document.write in a specific place, i have a link "France" who call the france() function "document.write('6'); but i'd like the 6 will write between <span id=france> and </span> <6> sorry for this bad english .. <5> i found it <5> document.body.scrollHeight <6> me too <6> i use <6> function france() { <6> txt="4 "; <6> Calk.innerHTML = txt; <6> } <6> and <span id=Calk></span< <6> *> <7> hi <7> can i use alt=text in <span> or <div> or something else? except <img> <8> KinoX: You probably refer to title attribute. <span title="text-that-will-appear-on-hover">bleh</span> <7> fatbrain yes dear dats what i need. thank you very much <6> hey, i have a <span id=price>6</span>, how can i make a function to inc +2 ? <6> i'd like when i click on a link, that add +2 from 6 <8> function do_inc() { document.getElementById("price").value = Number(document.getElementById("price").value) + 2; } <8> <input type="button" onclick="do_inc()" /> <8> you should enclose your (x)html attributes in "-marks. <6> thx :) <7> fatbrain it didn`t hover anything <8> KinoX: When you hover the element with the mouse, the text in the title="" will display like a tooltip. <7> yes it should but it is not displaying :D <7> um.. stange <6> I have <span id="tot">20</span> <span id="rtotal">25</span> <6> but when i put the function document.getElementById("rtotal").value = Number(document.getElementById("tot").value) + 6; <6> that don't work fatbrain <6> i put : function add() { document.getElementById("rtotal").value = Number(document.getElementById("tot").value) + 6; } and a radio button with onclick='add();' <6> but the value "rtotal" dont move <6> when i click on the radio button <9> If I choice in a menu select apple when my browser refresh how it can stay to value apple because now every time the browser resresh the value return to 0 <8> Kevinnn: sorry, replace .value with .innerHTML <6> oh yes ! <6> but now, when i click on the radio button, i see NaN <6> lol <8> hehe <6> :( <6> why NaN ? <9> If I choice in a menu select apple when my browser refresh how it can stay to value apple because now every time the browser resresh the value return to 0 <6> fatbrain, i don't understand why i see "NaN", the number are good ... tot="20" and rtotal="25" <9> If I choice in a menu select apple when my browser refresh how it can stay to value apple because now every time the browser resresh the value return to 0 <6> psykotapette ... i think they saw u'r problem .. <9> ? <1> 'morning <10> Afternoon <11> afternoon <8> hello guys <12> hello <13> Can you use javascript to scroll a div whose overflow is set to 'hidden'? <1> yes <1> set .scrollTop or .scrollLeft <13> yeah, that what I'm doing, but it isn't working <1> check between the monitor and the chair then. <13> Ha ha. :/ <13> This is the line that I'm using: <13> document.getElementById("statelinklist").scrollTop += dir <13> dir is a function parameter. either a 1 or a -1 <1> .................. <1> make sure there are stuff to scroll and alert the scrollTop there see if you did something wrong <1> and do +1 or -1 is kind of nothing to see <13> wtf? <13> It isn't alerting, or giving me any errors <12> then you're doing something wrong <12> check your debugger <1> so, it is between the monitor and chair after all! <12> http://www.javascript-channel.com/Wiki.jsp?page=KnowledgeBase#debug <13> damn page was never checked in firefox. When I open it in FF to get a list of all the errors, I get a ton of them that have nothing to do with what I'm doing. <12> that can't be good <13> tell me about it <13> one thing that DOES have to do with what I'm doing is that it wants a semicolon before the first line in a <script> block. <12> http://validator.w3.org/
Return to
#javascript or Go to some related
logs:
#javascript #linuxhelp #AllNiteCafe Fabiola bullz #chatzone #linux lamaazi #AllNiteCafe #MissKitten #MissKitten
|
|