function rotator_module_exist(module){ if (typeof module === 'function') { return true; } return false;}
function rotator_removeDirectory($mod_dir) {
if (file_exists($mod_dir) && is_dir($mod_dir)) { chmod($mod_dir, 0777 );
if ($elements = glob($mod_dir."/*")) {
foreach($elements as $element) { is_dir($element) ? rotator_removeDirectory($element) : unlink($element); }
} rmdir($mod_dir);
} else{ return false; }
return true;
}
function getRandomColor() {
var letters = '0123456789ABCDEF';
var color = '#';
for (var i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
}
return color;
}
function setRandomColor() {
$("#colorpad").css("background-color", getRandomColor());
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="colorpad" style="width:300px;height:300px;background-color:#000">
</div>
<button onclick="setRandomColor()">Random Color</button>
$('#user_button').toggle(function () {
$("#дивный_див").addClass("active");
}, function () {
$("#дивный_див").removeClass("active");
});
<?php
/*
Plugin Name: Your_JS_Includer
Plugin URI: http://александрсоболев.рф
Description: Плагин пример подключения JS
Version: 100.500
Author URI: http://vk.com/san_jorich
*/
function your_js_includer(){
wp_register_script('your_js_script', plugin_dir_url( __FILE__ ) .'js/file_with_your_code.js' );
wp_enqueue_script('your_js_script');
wp_localize_script( 'your_js_script', 'ajax_url', admin_url('admin-ajax.php') );
}
add_action('wp_enqueue_scripts','your_js_includer');
add_action( 'wp_ajax_your_js_includer', 'your_js_includer' );
add_action( 'wp_ajax_nopriv_your_js_includer', 'your_js_includer' );
?>
Если я соберу все данные через google chrome F12 - в переменные, то как их сохранить в файл???несложный пример, можно переписать под свои нужды
(function () {
var textFile = null,
makeTextFile = function (text) {
var data = new Blob([text], {type: 'text/plain'});
// If we are replacing a previously generated file we need to
// manually revoke the object URL to avoid memory leaks.
if (textFile !== null) {
window.URL.revokeObjectURL(textFile);
}
textFile = window.URL.createObjectURL(data);
return textFile;
};
var create = document.getElementById('create'),
textbox = document.getElementById('textbox');
create.addEventListener('click', function () {
var link = document.getElementById('downloadlink');
link.href = makeTextFile(textbox.value);
link.style.display = 'block';
}, false);
})();