[jQuery] Re: How to access custom div tag

2008-01-27 Thread Tales Augusto
Try this: $("div[serial=12345]").click NccWarp9 escreveu: > How can I reference custom DIV tag using jquery? > > eg, > > > > and to use something as $("12345").click ... or something > >

[jQuery] Re: How to access custom div tag

2008-01-27 Thread Javier Infante
El dom, 27-01-2008 a las 05:04 -0800, NccWarp9 escribió: > How can I reference custom DIV tag using jquery? > > eg, > > > > and to use something as $("12345").click ... or something You may be searching for this: $("div[serial=12345]").click http://docs.jquery.com/Selectors cheers! --