How to manipulate DOM elements in one go, on the fly?
For example, execute three actions in sequence [Create]-> [Modify]-> [Add].
Since jQuery supports chain operations, which is actually the builder mode of design mode, we can string three operations together to execute them.
First create a p element whose content contains an a element.