Search results

  1. federico_casares

    !!!! The NEW Biggest thread !!!!

    I'm at work fighting with a piece of Javascript code that refuses to work in IE6... Any other IE6 haters here? :biggrin:
  2. federico_casares

    Game: Ban the Person above you!!!!!!!!!!!

    I ban Smith6612 because in Argentina it's Friday... So it's not weekend. So he's lying. So he gets banned. =P
  3. federico_casares

    [Ayuda] Como modifico este codigo para hacerlo FAQ

    Qué pasaría si en vez de .visibility="hidden" usas .display="none"?
  4. federico_casares

    Word Assoation Game

    chalk >> teacher
  5. federico_casares

    Game: Ban the Person above you!!!!!!!!!!!

    I ban Dannad500 because his signature is a complete mess.
  6. federico_casares

    Forum game <King of the hill>

    I take a plane and spray holy water all over the place, destroying all the undead. Then, I land on the hill and claim it under my name!
  7. federico_casares

    a little javascript regex help

    Probably you should use the exec method inside a loop... while(result = regex.exec(string) != null ) { // do something with result }
  8. federico_casares

    Forum Game <Wish>

    Granted, but the things that happen are absolutely random and unpredictable. I wish to have my own apartment.
  9. federico_casares

    Photoshop Cs2, Photoshop Cs3?

    Well, as a (amateur) photographer, I like CS3 better. It has some useful features... I also like its interface (it's better organized), and it seems to start faster than CS2.
  10. federico_casares

    best antivirus Norton or Mcafee

    My fav antivirus is Avast. It's free, user friendly, lightweight, updates without a problem, and works great. I used to like Norton before, but it just got heavier and heavier in every release... :(
  11. federico_casares

    First Date Kiss, Or Later on?

    Probably that's something you can't decide beforehand... It'll come naturally if you both are looking forward to kiss each other and start a relationship. If one of you isn't so sure, it just won't happen. Don't try to force the things. It'll happen if it has to... BTW, your "I hope she doesn't...
  12. federico_casares

    JavaScript problem

    As I told you before, you should use: var mySelect = document.getElementById('select_id'); var myOption = mySelect.options[mySelect.selectedIndex].value; You'll have the value of the selected option in the var myOption.
  13. federico_casares

    Need a Suggestion

    Mmm, using the same browser?
  14. federico_casares

    Need a Suggestion

    Mmm... Perhaps you could do: if(isset($_POST["type"]) && $_POST["type"]==1) { // Registration type 1 } Being type a hidden field in the form. I prefer not to mess with global variables, but yours is a completely valid approach, nonetheless!
  15. federico_casares

    JavaScript problem

    Maybe you can call a function in the onsubmit of the form, where you make all the checks. <form onsubmit="return validateForm()" ... > Where validateForm is a function that performs all the checks, shows alerts and returns false if anything went wrong, true if everything's OK. The leap year...
  16. federico_casares

    JavaScript problem

    Sorry! My mistake!! The line with the for should be: for(x=1;x<=monthsArray[myValue];x++) {
  17. federico_casares

    JavaScript problem

    They are the IDs of the select tags in the HTML document, just that... This function would use no arguments, really. It does what it needs just using the DOM.
  18. federico_casares

    Need a Suggestion

    Yes, but you could check what fields in the $_POST array are set, or you could use a hidden field inside the form... That way you don't have to mess with global vars...
  19. federico_casares

    Need a Suggestion

    And what do you want the global variable for? Maybe you can just check what fields you have in the $_POST array, or use a hidden field. =)
  20. federico_casares

    JavaScript problem

    Alright, let's see... The standards compliant way to check the selected value of a select is: var mySelect = document.getElementById('my_select_id'); var myValue = mySelect.options[mySelect.selectedIndex].value; I guess that what you want to do can be done using an array that says how...
Top