Add new tag before element

Description

The following code shows how to add hard coded tag before an element.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--  ww w.  j  ava 2 s .  c om-->
    $("p").before("<b>Hello</b>");
  });
</script>
</head>
<body>
<body>
  <span>b</span>
  <p>p</p>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities