Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Fucntion call problem Reply To: Fucntion call problem

#171598
__
Participant

@matthisco, just FYI, live is deprecated. You might be interested in looking at on, which succeeds live and would also allow you to assign both handlers at once:

$(".element").on({
    "change": yourChangeFunction(),
    "click":  yourClickFunction()
});