• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

I think I am going to cry

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    #81
    Originally posted by suityou01 View Post
    Yay Pwnd


    Sent from my iMinion using Tapatalk
    I'll do you a deal - I'll agree to be your bitch, and in return we make minstrone airtight. With bananas all round?

    Comment


      #82
      Originally posted by SpontaneousOrder View Post
      I bet you race people from the traffic lights to bathe in the glory of victory, while they casually take a left into the ASDA carpark blissfully unaware they just lost a 'race' ?
      Very good.
      Originally posted by MaryPoppins
      I'd still not breastfeed a nazi
      Originally posted by vetran
      Urine is quite nourishing

      Comment


        #83
        Originally posted by SpontaneousOrder View Post
        I'll do you a deal - I'll agree to be your bitch, and in return we make minstrone airtight. With bananas all round?
        Making Minestrone airtight doesn't sound very nice.
        Knock first as I might be balancing my chakras.

        Comment


          #84
          Originally posted by suityou01 View Post
          Making Minestrone airtight doesn't sound very nice.
          Sounds nice for minestrone.

          Comment


            #85
            Suity did you implement this project?

            ITWat Project - Waste Water Treatment System

            Comment


              #86
              Looks like I am not alone

              Let me google that for you
              Knock first as I might be balancing my chakras.

              Comment


                #87
                Avoiding anonymous JavaScript functions

                WHS.
                Knock first as I might be balancing my chakras.

                Comment


                  #88
                  Originally posted by suityou01 View Post
                  Except by the end he's using an anonymous function anyway to get it to work in browsers older than IE9.

                  Comment


                    #89
                    Originally posted by Bunk View Post
                    Except by the end he's using an anonymous function anyway to get it to work in browsers older than IE9.
                    A hack for an old MS browser aint much of a case to be fair.
                    Knock first as I might be balancing my chakras.

                    Comment


                      #90
                      Originally posted by suityou01 View Post
                      A hack for an old MS browser aint much of a case to be fair.
                      I also think it's more readable to have the anonymous function which is called when the event is triggered, and inside it you can call any functions you want.

                      I don't like:

                      Code:
                      element.addEventListener('click', toggleMenu.bind(null, param1, param2), false);
                      I prefer:

                      Code:
                      element.addEventListener('click', function() {
                          toggleMenu(param1, param2);
                      }, false);
                      Personal preference, but I won't be changing how I do it anytime soon. Or at least until I see a better argument against it.

                      Comment

                      Working...
                      X