How to turn on and off a lot of jQuery click activated functions and then have them turn on again?

The .bind() function doesn't have a "memory" of the handler(s) that were previously removed. As explained in the .bind() documentation you have to pass it a function the same way you pass one to .click() .

If you want a global switch to turn events on/off, there isn't one. But you can 'mock' one by having a global variable that is checked within the function of the triggered event.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions