<!DOCTYPE html>
<script type="text/javascript" src="jquery1-9.min.js"></script>
<html>
<body>
<p id="demo">Click the button to sort the array.
<div class="inline">13</div>
<div class="inline">1.56</div>
<div class="inline">12.45</div>
<div class="inline">4</div> </p>
<p id="demo"></p>
<button onclick="myFunction()">Try it</button>
<script>
var myArray = [];
myArray.push($('div').text().toString())
alert(myArray)
</script>
</html>
Уважаемые ГУРУ, подскажите пожайлуста, как воткнуть в массив после числа КОМУ-разделитель ,чтоб в алерте стало 13,1.56, 12.45, ??? А то оно сваливается все вкучу 131.5612.45, ... Циклом кому добавлять ?