how can i hide text in screen using html and js code example
Example 1: javascript hide div
<script>
document.getElementById("id").style.display = "none";
document.getElementById("id").style.display = "block";
document.getElementById("id").style.display = "";
</script>
<html>
<div id="id" style="display:none">
<div id="id" style="display:block">
</html>
<script>
$("#id").hide();
$("#id").show();
</script>
Example 2: how to use javascript to hide content and show through link
$(document).ready(function() {
$('li').click(function () {
$('.content:visible').hide();
$('.content').eq($(this).index()).show();
});
});