User Profile

Collapse

Profile Sidebar

Collapse
ilovemusic123
ilovemusic123
Last Activity: Mar 1 '09, 08:15 PM
Joined: Mar 1 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • ilovemusic123
    started a topic Need help with form!

    Need help with form!

    Hi, I have a question about Java. I'm really new to Java so this is not something I'm familiar with..
    My question is, how do I get the values of pos.offsetTop and pos.offsetLeft to show up in my input box??

    Here is the java code:
    Code:
    function getPosition(element) {
             var left = 0;
             var top = 0;
             if(element.offsetParent) {
                 while(element) {
    ...
    See more | Go to post
    Last edited by acoder; Mar 4 '09, 10:26 AM. Reason: Added code tags - part 2

  • ilovemusic123
    started a topic Help please!
    in Java

    Help please!

    Hi, I have a question about Java. I'm really new to Java so this is not something I'm familiar with..
    My question is, how do I get the values of pos.offsetTop and pos.offsetLeft to show up in my input box??

    Here is the java code:
    Code:
    	function getPosition(element) {
    		var left = 0;
    		var top = 0;
    		if(element.offsetParent) {
    			while(element) {
    				left += element.offsetLeft;
    				top += element.offsetTop;
    ...
    See more | Go to post
No activity results to display
Show More
Working...