New wiki-page
Jump to navigation Jump to search
No edit summary
No edit summary
Line 24: Line 24:
$(document).ready(function () {
$(document).ready(function () {
     $("#map-catcher").mousedown(function (e) {
     $("#map-catcher").mousedown(function (e) {
         $("#coord").text("x:"+e.offsetX+", y:"+e.offsetY);
         alert(e.offsetX);
     });
     });
});
});
});
});
</script>
</script>

Revision as of 18:51, 9 August 2017

<style>

  1. map-container{
   position:relative;
   width:300px;
   height:300px;

}

  1. map-svg{
   position:absolute;
   left:0px;
   top:0px;

}

  1. map-catcher{
   position:absolute;
   left:0px;
   top:0px;
   height:100%;
   width:100%;

}

</style> <script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"> RLQ.push(function () { $(document).ready(function () {

   $("#map-catcher").mousedown(function (e) {
       alert(e.offsetX);
   });

}); }); </script>