$(function (){ ...}); или $(document).ready(function() { ... });
- начнёт работу тогда, когда будет готов DOM, за исключением картинок$(window).load(function() { ... });
- код будет запущен когда страница будет полностью загружена, включая все фреймы, объекты и изображения $(document).ready(function() { ... });
.if (window.jQuery) {
...
}
if (typeof jQuery == 'undefined') {
...
}
mixin whyus_item(h2)
.item
h2!=h2
+whyus_item('Line1\nLine2')
+whyus_item('Line1 <br /> Line2')
<div class="strike">
<span>Hello World</span>
</div>
.strike {
display: block;
text-align: center;
overflow: hidden;
white-space: nowrap;
}
.strike > span {
position: relative;
display: inline-block;
}
.strike > span:before,
.strike > span:after {
content: "";
position: absolute;
top: 50%;
width: 9999px;
height: 1px;
background: red;
}
.strike > span:before {
right: 100%;
margin-right: 15px;
}
.strike > span:after {
left: 100%;
margin-left: 15px;
}