একটি পাঠ্যে ট্যাব, লাইন ব্রেক এবং হোয়াইটস্পেস হস্তান্তর করতে, হোয়াইটস্পেস ব্যবহার করুন জাভাস্ক্রিপ্টে সম্পত্তি। স্বাভাবিক, Nowrap, pre, ইত্যাদি মানগুলি সেট করুন। প্রি সেট করার সময়, এটি
<!DOCTYPE html>
<html>
<head>
<style>
#box {
width: 300px;
height: 100px;
border: 2px solid black;
background-color: gray;
}
</style>
</head>
<body>
<button onclick="display()">Set</button>
<div id="box">
This is Demo Text.
This is Demo Text.
This is Demo Text.
This is Demo Text.
This is Demo Text.
</div>
<script>
function display() {
document.getElementById("box").style.whiteSpace = "pre";
}
</script>
</body>
</html>