[jQuery] iUtil use it

2006-09-30 Thread kenton.simpson

Even if your not using the interface plugin you need down load the iUtil
plugin and start using it. I even think that iUtil should go core. 

Thanks Stefan Petre
-- 
View this message in context: 
http://www.nabble.com/iUtil-use-it-tf2362236.html#a6580883
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] iUtil use it

2006-09-30 Thread Corey Jewett
A link would be terribly useful when promoting something this hard. :)

Corey


On Sep 30, 2006, at 9:39 AM, kenton.simpson wrote:


 Even if your not using the interface plugin you need down load the  
 iUtil
 plugin and start using it. I even think that iUtil should go core.

 Thanks Stefan Petre
 -- 
 View this message in context: http://www.nabble.com/iUtil-use-it- 
 tf2362236.html#a6580883
 Sent from the JQuery mailing list archive at Nabble.com.


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] iUtil use it

2006-09-30 Thread kenton.simpson

I don't want to hot link the file, but you can find it here
http://interface.eyecon.ro/download

Corey Jewett-3 wrote:
 
 A link would be terribly useful when promoting something this hard. :)
 
 Corey
 
 
 On Sep 30, 2006, at 9:39 AM, kenton.simpson wrote:
 

 Even if your not using the interface plugin you need down load the  
 iUtil
 plugin and start using it. I even think that iUtil should go core.

 Thanks Stefan Petre
 -- 
 View this message in context: http://www.nabble.com/iUtil-use-it- 
 tf2362236.html#a6580883
 Sent from the JQuery mailing list archive at Nabble.com.


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/
 
 
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/
 
 

-- 
View this message in context: 
http://www.nabble.com/iUtil-use-it-tf2362236.html#a6581137
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] iUtil use it

2006-09-30 Thread Michael Geary
   Even if your not using the interface plugin you need down load
   the iUtil plugin and start using it. I even think that iUtil should
   go core.

  A link would be terribly useful when promoting something 
  this hard. :) 

 I don't want to hot link the file, but you can find it here 
 http://interface.eyecon.ro/download

My eyes may not be what they used to be, but I don't see anything resembling
iUtil on that page.

-Mike


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] iUtil use it

2006-09-30 Thread Brandon Aaron
It is any of the downloads. Just download the uncompressed version at
the bottom of the page and iUtil is in there.

--
Brandon Aaron

On 9/30/06, Michael Geary [EMAIL PROTECTED] wrote:
Even if your not using the interface plugin you need down load
the iUtil plugin and start using it. I even think that iUtil should
go core.

   A link would be terribly useful when promoting something
   this hard. :)

  I don't want to hot link the file, but you can find it here
  http://interface.eyecon.ro/download

 My eyes may not be what they used to be, but I don't see anything resembling
 iUtil on that page.

 -Mike


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] iUtil use it

2006-09-30 Thread Karl Swedberg
On Sep 30, 2006, at 1:16 PM, Michael Geary wrote:

 Even if your not using the interface plugin you need down load
 the iUtil plugin and start using it. I even think that iUtil should
 go core.

 A link would be terribly useful when promoting something
 this hard. :)

 I don't want to hot link the file, but you can find it here
 http://interface.eyecon.ro/download

 My eyes may not be what they used to be, but I don't see anything  
 resembling
 iUtil on that page.

Scroll down to the bottom of the page.

For the uncompressed version, find this line:
- Download Interface uncompressed version: Download Interface  
interface.zip (38kb)

For the packed version, find this line:
- Download Interface compressed version separate files: Download  
Interface compressed interface-compressed.zip (35kb).

Each is a .zip file. Unzip the file after downloading and you'll find  
the iutil.js file in there.

Now my question is, how will iUtil help us? How can we use it? Is  
there any documentation for it that will show how to get the most out  
of it?

Cheers,
Karl
___
Karl Swedberg
www.englishrules.com
www.learningjquery.com

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] iUtil use it

2006-09-30 Thread kenton.simpson

Iutil defines these function getPos, getPosition, getSize, getClient,
getScroll, getMargins, getPadding, getBorder, getPointer. There names go a
long way to describe there function. Most if not all the function return
objects with dimensional info about the passed element node. I recently used
it to write a plugin to overlay an element or elements over another element.
the .each could be changed to .attr(), but anyway. Iutil primarily use would
be in locating an elements spacial relationship to others nodes.

jQuery.fn.overlay = function(selector, strict) {
strict = strict == undefined ? strict = true : strict;
elements = jQuery(selector);
if(strict  !elements.length  0) {
throw Element not found to overlay;
}
else if(elements.length  1) {
return this;
}

var pos = jQuery.iUtil.getPos(this[0]);
elements.each( function(idx) {
sty = this.style;
sty.position =  absolute;
sty.top = pos.y + px;
sty.left = pos.x + px;
sty.width = (pos.w - 8) + px;
sty.height = (pos.h - 8) + px;
});
}
-- 
View this message in context: 
http://www.nabble.com/iUtil-use-it-tf2362236.html#a6581857
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] iUtil use it

2006-09-30 Thread John Resig
Kenton -

A lot of what you're talking about is already, or is going to be,
added in to the Dimensions module in jQuery:
http://jquery.com/dev/svn/jquery/src/dimensions/dimensions.js

Paul has been working on it - and working with Stefan, to try and move
nearly all of the important iUtil parts over to that plugin.

--John

On 9/30/06, kenton.simpson [EMAIL PROTECTED] wrote:

 Even if your not using the interface plugin you need down load the iUtil
 plugin and start using it. I even think that iUtil should go core.

 Thanks Stefan Petre
 --
 View this message in context: 
 http://www.nabble.com/iUtil-use-it-tf2362236.html#a6580883
 Sent from the JQuery mailing list archive at Nabble.com.


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



-- 
John Resig
http://ejohn.org/
[EMAIL PROTECTED]

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/