.set() was superseded by .attr() in 1.0. You can do:

.attr("name") // to access the name attribute
.attr("name","test") // to set the name attribute
.attr({ name: "test", value: "test" }) // to set multiple attributes

--John

On 9/15/06, Rey Bango <[EMAIL PROTECTED]> wrote:
> I'm trying to use a variation of the Easy DOM plugin but when I run a
> test, it generates an error saying that the set() method isn't defined.
>
> In looking at the docs, I don't see a reference to it but in doing a
> site search, I did in fact find that it was/is part of the JQuery
> Base/DOM module. Is this method now deprecated in v1.0.1? If so, whats
> the replacement method. I'm using the JQuery version that John asked me
> to download from here:
>
> http://jquery.com/src/jquery-svn.js
>
> In looking through it, I don't the set() method in there.
>
> Any ideas?
>
> Rey
>
> _______________________________________________
> jQuery mailing list
> [email protected]
> http://jquery.com/discuss/
>


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

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to