x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<style>
5
.box {
6
  border: 5px solid orange;
7
  background: gold;
8
  padding: 10px;
9
}
10
</style>
11
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
12
<script>
13
  $( function() {
14
    $( "div" ).click( function() {
15
      $( this ).removeClass( "box" );
16
    });
17
  });
18
</script>
19
20
<div class="box">
21
  Click me...
22
</div>