Guest User

Untitled

a guest
Jul 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. .mousemove(function(e)
  2. {
  3. if(mouseDown)
  4. {
  5. //alert("debug");
  6. //$("#debug").html($("#debug").html() + e.pageX + ", " + e.pageY + "<br>");
  7. coordhdl.addCords(e.pageX - this.offsetLeft, e.pageY - this.offsetTop);
  8. //$('#test').load('showCoordinates.php');
  9. var coordinations = coordhdl.getCords();
  10. $('#signature').remove();
  11.  
  12. //IMPORTANT LINE:
  13. $('#test').prepend('<img id="signature" src="showCoordinates.php?cords=' + coordinations + '" alt="braso"');
  14. }
  15. });
  16.  
  17. $('#test').prepend('<img id="signature" src="showCoordinates.php?cords=' + coordinations + '" alt="braso"/>');
  18.  
  19. var newImg = $("<img />").attr("src", "showCoordinates.php?cords=" + coordinations).attr("alt", "braso");
  20. $('#test').prepend(newImg);
Add Comment
Please, Sign In to add comment