In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
<script type="text/javascript"> jQuery("document").ready(function(){ jQuery("p").css("background-color", "#ff6600"); }); </script>
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<script type="text/javascript"> jQuery("document").ready(function(){ jQuery("p").css("background-color", "#ff6600"); }); </script>
For for clarity and conciseness, many code examples in this title are extracted. An extracted block of code is set as follows:
... jQuery("p").css("background-color", "#ff6600"); } ...
Code and markup preceded and ended with ellipses "..." are extracted from the full context of code and/or a larger body of code and markup. Please refer to the downloadable code bundle to see the entire work.
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "clicking the Next button moves you to the next screen".
Tips and tricks appear like this.