[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, div id=1701 serial=12345 and to use something as $(12345).click ... or something You may be searching for this: $(div[serial=12345]).click

[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, div id=1701 serial=12345 and to use something as $(12345).click ... or something