<!DOCTYPE html>
<html>
<head>
<script src="/lib/jquery-1.12.2.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
newPos = new Object();
newPos.left = "0";
newPos.top = "100";
$("p").offset(newPos);
});
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<button>Set offset coordinates of the p element using an object</button>
</body>
</html>