I get an error
Uncaught TypeError: Object
When I run this method
$("input[name=advancedSettings]").change(function() {
$('span[id^="sFile"]').each(function() {
this.html('Hey');
});
});
And span should, of course, have a method called text and html, and I tested with
source
share