I’m using jQuery and I want to show some calculation in a span (called span1) and I want when text of span1 changed do some calculation on it’s value and show in other spans (called `span2 ,span3,…). How I can handle text change of span?
I’m using jQuery and I want to show some calculation in a span (called
Share
You could use the function that changes the text of span1 to change the text of the others.
As a work around, if you really want it to have a
changeevent, then don’t asign text to span 1. Instead asign an input variable in jQuery, write a change event to it, and whever ur changing the text of span1 .. instead change the value of your input variable, thus firing change event, like so:Though I really feel this “work-around”, while useful in some aspects of creating a simple change event, is very overextended, and you’d best be making the changes to other spans at the same time you change span1.