Write a jQuery code to make first word of each statement to bold.
Answer :
File Name : jQuery.html
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<title>SP Creation</title>
</head>
<body>
<div id="box">
<h2>jquery</h2>
</div>
<div class="container">
<p id="text">Lorem ipsum dolor sit amet.</p>
<p id="text">Accusantium quas ipsum iste at?</p>
<p id="text">Asperiores eligendi reprehenderit rem recusandae.</p>
<p id="text">Ipsa ad dolores iste dicta?</p>
<p id="text">Dignissimos nihil voluptates laboriosam explicabo.</p>
</div>
<script>
$(document).ready(function(){
$('p').each(function(){
var tpara = $(this);
tpara.html( tpara.text().replace(/(^\w+)/,'<b>$1</b>') );
});
});
</script>
</body>
</html>
Write a jQuery code to make first word of each statement to bold.
Reviewed by technical_saurabh
on
May 02, 2021
Rating:
No comments:
Post a Comment