<span> set value code example
Example 1: jquery change span tag text
$('.in-stock span').html("your new string");
Example 2: set span text
$("#spanID").text('your text');
$('.in-stock span').html("your new string");
$("#spanID").text('your text');