Jump to content

Recommended Posts

hi folks,

 

trying to figure out this ...

 

In the demo (http://www.leigeber.com/2008/04/dynamic-inline-javascript-form-validation/) the inline error message pops up to the right.  Because my form is all the way to the right of the screen, I need to display the inline message to the left or top of the form fields and not to the right.

 

Tried to tweak the code but no luck so far ... any help or tips greatly appreciated!

 

Here is the function from the demo that sets the left position:

 

function leftPosition(target) {
  var left = 0;
  if(target.offsetParent) {
    while(1) {
      left += target.offsetLeft;
      if(!target.offsetParent) {
        break;
      }
      target = target.offsetParent;
    }
  } else if(target.x) {
    left += target.x;
  }
  return left;
}

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.