All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.belteshazzar.jquery.Offset Maven / Gradle / Ivy

The newest version!
package com.belteshazzar.jquery;

import netscape.javascript.JSObject;

public class Offset {
	public double top;
	public double left;
	
	public Offset(JSObject js) {
		this.top = (double)js.getMember("top");
		this.left = (double)js.getMember("left");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy