Create Two Buckets
- example.com
- www.example.com
Add an index.html file to the example.com bucket.
Create Two Buckets
Add an index.html file to the example.com bucket.
<?php phpinfo(); ?> |
<?php | |
echo '<script>console.log(' . $var . ')</script>'; | |
?> |
/* prevent children elements from getting in the way of click events using CSS. */ | |
a > * { | |
pointer-events: none; | |
} |
# https://github.com/browserslist/browserslist | |
>= 1% | |
last 2 major version | |
not dead | |
Chrome >= 45 | |
Firefox >= 38 | |
Edge >= 12 | |
Explorer >= 10 | |
iOS >= 9 |
.npmrc
file in the root of your project (or where you have your package.json file) with the following content:@fortawesome:registry=https://npm.fontawesome.com/ //npm.fontawesome.com/:_authToken=XXXXXXXXXXX
How To Enable Mojave Dark Mode For Applications
enable
defaults write com.sublimetext.3 NSRequiresAquaSystemAppearance 0
disable
{ | |
"extends": "standard", | |
"env": { | |
"browser": true, | |
"es2020": true | |
}, | |
"root": true | |
} | |
--- |
// style the fieldset legend tag across browsers | |
$('legend').replaceWith( '<h3 class="legend">' + $('legend').html() + '</h3>' ); |