@creslin_black,
HTML and CSS are Browser specific…
and both windows-7 and 8 are going to be out of service…!!!
++ jQuery after() explained
I think it is better, if one understands the concept.
It all start’s with you,
using a Browser
in which you load a HTML-file,
which we will call the HTML-Document.
This document has a minimal build of
<!DOCTYPE html>
<html>
<head>
<title> </title>
</head>
<body>
</body>
</html>
The Browser =load’s= this document into Memory
in a pattern that is described as
the Document Object Model
in short the DOM.
( the interpretation of the DOM is Browser & Version specific )
html
|
+-----+------------+
| |
head body
| |
title +---+----+---------+
| | |
h3 div div
#one #two
In the description of your document in DOM-talk…
you will encounter terms like:
parent children sibling descendants ascendants…
The HTML-Element has no parent
but is a parent to 2 child-Element’s
the ‘head’-Element
and
the ‘body’-Element.
The ‘head’- and ‘body’-Element,
both being children to the ‘html’-Element
are siblings to each-other.
The ‘head’-Element is parent to the ‘title’-Element…
the ‘title’-Element is a child of the ‘head’-Element
the ‘title’-Element is also a descendant of the ‘html’-Element.
The DOM has several interface’s
over which you can access the data**/**information
held by the DOM.
One of the interface’s is the Element-interface
you can divide the interface into
properties ( consisting of a property-key and it’s associated VALUE )
and
methods ( giving you the functionality to manipulate the Elements )
http://api.jquery.com/after/
With the jQuery after() Method
you have a facility with which you either
- Create Content **"
<p>New paragraph</p>
"**and then inserted after an HTML-element **("#one")** within in the **DOM**
_("#one").after("<p>New paragraph</p>
");_
( the interpretation of the DOM )
html
|
+-----+------------+
| |
head body
| |
title +---+----+---------+
| | |
h3 div div
| #one #two
p
- An element in the DOM can also be selected ("p")** and inserted after another element **("#two")
("#two").after((“p”));
( the interpretation of the DOM )
html
|
+-----+------------+
| |
head body
| |
title +---+----+---------+
| | |
h3 div div
#one | #two
p