Updated December 23rd, 2013: These lists were gathered from a Windows 7 virtual machine on a MacBook Pro.
- js
- flexbox
- canvas
- canvastext
<!DOCTYPE html> | |
<head> | |
<title>Example</title> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
</head> | |
<body> | |
<section class="what"> | |
<div class="awesome"> | |
<div class="classnames"> |
# all php files :: disallow direct access of file | |
# between <?php and ?> | |
defined('_JEXEC') or die; | |
# index.php :: define variable with application | |
# between <?php and ?> | |
$app = JFactory::getApplication(); | |
# index.php :: define variable with document | |
# between <?php and ?> |