<html>
<head>
<link rel="stylesheet" href="./icono.min.css"/>
<style type="text/css">
.allow:before {
border-bottom: 3px solid #557777;
border-right : 3px solid transparent;
display : block;
height : 0;
position : absolute;
right : -3px;
top : 0;
width : 0;
}
</style>
<script src="./jquery.min.js"></script>
<script src="./jquery-ui.min.js"></script>
<script language="Javascript">
$(function(){
var hosts = [
"L2SW11",
"L2SW12",
"L2SW13",
"L2SW14",
"L2SW15",
"L2SW16",
"L2SW17",
"L2SW18",
"L2SW19",
"L2SW1a",
"L2SW1b"
];
for(var i=0; i<hosts .length; i++){
var id = "#" + hosts[i];
$(id).draggable({
stop: function(){
var ofs = $(id).offset();
alert("ID=" + this.id + " : X=" + ofs.left + " : Y=" + ofs.top);
}
});
}
});
</script>
</hosts></script></head>
<body>
<div class="allow"></div>
<br />
<br />
<br />
<i id="L2SW11" class="icono-mail"></i>
<i id="L2SW12" class="icono-share"></i>
<i id="L2SW13" class="icono-barChart"></i>
<i id="L2SW14" class="icono-barChart"></i>
<i id="L2SW15" class="icono-exclamation"></i>
<i id="L2SW16" class="icono-home"></i>
<i id="L2SW17" class="icono-mail"></i>
<i id="L2SW18" class="icono-mail"></i>
<i id="L2SW19" class="icono-mail"></i>
<i id="L2SW1a" class="icono-mail"></i>
<i id="L2SW1b" class="icono-mail">L2SW1b</i>
</body>
</html>