You mean jquery properties or some element that you selected using jquery?
Just in case:
$('.inputfield').val();
$('a').href();
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Thu, Jan 8, 2009 at 9:06 PM, WoutervD <[email protected]> wrote:
>
> Hello there,
>
> I would like to know how i can access properties of a jQuery object
> instance.
> I have the following javascript:
> http://paste.pocoo.org/show/U9Gsy68MKP9LvvAvqGI6/
>
> I would like to access the instance from my HTML file and pass value's
>
> <script type="text/javascript">
> jObject.sValue = "a value :)";
> </script>
>
> How can I do this?
>
> The way jQuery is written confuses me a little (just started using it)
>