<a class="on" href="javascript:;">Включить</a>
<a class="off" href="javascript:;">Выключить</a>
<div class="text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consequatur, molestiae!
</div>
.text {
display: none;
}
.on {
&.is-active {
color: green;
}
}
.off {
&.is-active {
color: grey;
}
}
$on = $('.on');
$off = $('.off');
$text = $('.text');
active = 'is-active';
$on.click(function() {
$text.fadeIn(300);
$on.addClass(active);
$off.removeClass(active);
})
$off.click(function() {
$text.fadeOut(300);
$on.removeClass(active);
$off.addClass(active);
})
function get_name_browser(){
var ua = navigator.userAgent;
if (ua.search(/Chrome/) > 0) return 'Google Chrome';
if (ua.search(/Firefox/) > 0) return 'Firefox';
if (ua.search(/Opera/) > 0) return 'Opera';
if (ua.search(/Safari/) > 0) return 'Safari';
if (ua.search(/MSIE/) > 0) return 'Internet Explorer';
return 'Не определен';
}
var browser = get_name_browser();
if (browser = 'Google Chrome') {
var css = document.createElement("LINK");
css.rel = "stylesheet";
css.href = "./file.css";
document.getElementsByTagName("HEAD")[0].appendChild(css);
};
if (browser = 'Firefox') {
//И так далее
};
function getNumbers(str){ //вернет массив всех чисел в строке
var reg=/\d+/g,results=[];
while(match=reg.exec(str)){
results.push(match[0]*1);
}
return results;
}
console.info("Numbers:",getNumbers("цена за 1 мес. - 25")); // Numbers: [1, 25]
console.info("Price:", getNumbers("цена за 1 мес. - 25")[1]); // Price: 25
var videoArray = new Array();
videoArray[0]= 'url';
videoArray[1]= 'url';
videoArray[2]= 'url';
...
var rnd = Math.floor(Math.random()*(videoArray.length));
document.write('<video width="320" height="240" controls><source src="'+videoArray[rnd]+'" type="video/mp4"></video>'); // video
document.write('<iframe width="560" height="315" src="'+videoArray[rnd]+'" frameborder="0" allowfullscreen></iframe>'); // youtube