ID html code example
Example 1: html id
<p id="newid">this is the id</p>
<style>
#newid {
background-color: green;
text-align: center;
}
</style>
Example 2: referance html id css
<style>
#test {
}
</style>
<h1 id="test"></h1>
Example 3: html id
<style>
#grepperHeader {
background-color: lightblue;
color: navy;
padding: 40px;
text-align: center;
}
</style>
<h1 id="grepperHeader">grepperHeader</h1>
Example 4: html script id and class
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script class="foo" type="text/javascript">
function foobar() {
var a = 1;
}
</script>
<div id="showScript">Show me the script.</div>
<script type="text/javascript">
$('#showScript').click(function(event) {
event.preventDefault();
$("<div>").html($(".foo").text()).appendTo($("body"));
});
</script>