$(document).ready(function() {
String.prototype.replaceAll = function(s1, s2) {
return this.replace(
new RegExp( s1.replace(/[.^$*+?()[{\|]/g, '\\$&'), 'g' ),
s2
);
};
var e = $("span"),
fix = e.html().replaceAll('74991105297', "Текст1");
e.html(fix);
});
<?
use Bitrix\Main\Page\Asset;
CJSCore::Init(array("jquery" ));
$oAsset = Asset::getInstance();
$oAsset->addJs('тут_путь_к_вашем_скрипту_относительно_DOCUMENT_ROOT', true);