Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save developer-anuragsingh/ebf4050710c7047dfa9f40bf623a99eb to your computer and use it in GitHub Desktop.
Save developer-anuragsingh/ebf4050710c7047dfa9f40bf623a99eb to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello User!</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".element span").text(function(index, text) {
return text.replace('old text', 'next text');
});
});
</script>
</head>
<body>
<div class="element">
<span>This is old text.</span>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment