559be889
Alexander Karnovsky
Init test-9
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
function qwerty($array){
}
$( document ).ready(function() {
var $array = [];
$('.highcharts-series-group .highcharts-series').find('path').each(function(){
$array[$array.length] = this;
});
function second_passed() {
alert("прошла секунда")
$('<path fill="#000" d="M 237.98370614370438 75.50000165931097 A 5 5 0 1 1 237.88888160495426 75.500077170647955" stroke-linejoin="round" transform="translate(0,0)"></path>').insertAfter($array[0]);
}
setTimeout(second_passed, 1000000)
});
|