Recent content by bonzo meier

  1. B

    JS - make nodeValue the id - but how...

    no, sorry, this is not working. even if i change the line temp=links[i].firstchild; to var temp=links[i].firstchild; ...which i think is necessary, it doesn´t work on any browser. however, the nextSibling-approach looks promising to me, any ideas how i can get on with...
  2. B

    JS - make nodeValue the id - but how...

    hi, turns out good that i couldn´t close the thread: why doesn´t it work on ie6? ideas? function pimp_navi(id) { var links = document.getElementById(id).getElementsByTagName('a'); for(var i=0;i<links.length;i++) { var class = links[i].className; var exclude = "navi_second"...
  3. B

    JS - make nodeValue the id - but how...

    hi, woiwky, thank you very much! this is working perfectly - sorry i got you wrong in the first place... two more things: - would you like to explain why one shouldn´t use the with()-statement (apart from that it didn´t work in this case?)? - would someone from x10 PLEEZE start a tutorial on...
  4. B

    email submit button

    hi, the php script is not designed to generate any output but the mail with the form data. so if you want visitors, who filled in the form, to be directed back to the form page after submitting, you can add the line header('Location: http://www.myformsite.com/'); at the end of the php...
  5. B

    form validation w/Javascript

    hi, you should add an onClick-action to the button field: change your code <input type="submit" name="submit"><a href="thankyou.html"></a></button><br/> to: <input type="submit" name="submit" onClick="validform('emailform');"><a href="thankyou.html"></a></button><br/> or something like that...
  6. B

    JS - make nodeValue the id - but how...

    yes, but removing the with-statement would probably lead to all the links on the page being handled by the script. i just want the links in the <div id="menu"> to be changed. thanks and peace, bonzo
  7. B

    JS - make nodeValue the id - but how...

    hello. i have a menu set up like this: <div id="menu"> <a class="active">abc</a> <a class="passive">cde</a> </div> this is part of a typo3-template. whatever, what i need to do for design reasons is to replace the links (the 'abc', 'cde') with whitespace and set individual id´s to...
  8. B

    joomla menu problem

    I solved it. I just set up two menus (one being the submenu to the other). tecnically this is a different approach, but anyway, it works fine. (by the way: sorry for posting in the wrong category - this won´t happen again. promise.) peace, bonzo
  9. B

    joomla menu problem

    errr... no, this question is not about forums, it´s about a navigation menu... how can i get joomla to declare toplevel-navigation-links as "mainlevel" and sublevel navigation links as "sublevel"? that´s what i need to know... peace, bonzo
  10. B

    joomla menu problem

    hi, i am building a site with joomla (1.5.3) and the following error occurs: i made a menu structure like this: -home -section 1 ---category1 ---category2 -section 2 ---category1 ---category2 ...but joomla keeps declaring all the items as "mainlevel"! can someone tell me how i can get the...
  11. B

    Ad Code Issue

    it depends on how your site is coded. if you use div´s, tittat is right: you can go like <div>your content</div> <div>your ad code</div> the iframe solution would be <iframe style="background-color: transparent; border: none"> , but make sure the document you load into the iframe has <body...
  12. B

    Nusoap In Php

    hi, can you please post the code of your 'cliente.php', especially lines 1-5? thanx, bonzo
  13. B

    A little help with mySQL and SQL ORDER BY with dates

    looks ok to me... maybe you can post one of your Mod_Date's? just to see what they look like... and: is the output being re-ordered in any way? peace, bonzo
  14. B

    unsuspended but everything messed up

    hi x10-team. my account is unsuspended now, thank you. as i was told i added my own domain in the account management panel, with the effects that - the new c-panel-url (www.mydomain.com:2082) is not working - the redirect for my domain finds a 404-page on x10 - there´s no ftp-access any more...
  15. B

    just how smart can an iframe get?

    hi everybody, i am working on an idea on "intelligent" advertising right now, and i just came across the following: a document (let´s call it "ad.php") is placed on different websites via iframe, in the sense that www.thisisjust.com/an/example.html is showing ad.php in an iframe. these two are...
Top