Ok, I find the problem.
It was just somethig stuck in the brouser memory. After whipe it out… ALL GOOD.
And how come that on one computer its OK and second one no?
Thats weird. NO?
So i put
CODE in to function coils
function number()
{
$(“[data-slider]”)
.each(function () {
var input = $(this);
$(“<span>”)
.addClass(“output”)
.insertAfter($(this));
})
.bind(“slider:ready slider:changed”, function (event, data) {
$(this)
.nextAll(“.output:first”)
.html(data.value.toFixed(3));
});
}
call this number.js
and I added in to the page
<script type=”text/javascript” src=”http://localhost/i-prosperity/wp-test/wp-ip/wp-content/themes/appdev/js/number.js”></script>
<script type=”text/javascript”>
<!–
number();
//–></script>
and still nothing…. Im new in WP and JS to so meaby it something wrong between chair and the keybord 🙁
Any help?