<html>
<head>
<script src="https://libs.baidu.com/jquery/1.10.2/jquery.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>