Re: modernizing html output

2019-04-06 Thread Mathieu Lirzin
Hello Gavin, Gavin Smith writes: > On 4/2/19, Mathieu Lirzin wrote: >>> I suggest trying just a simple "id selector": >>> >>> res = elem.querySelector("#" + linkid); >>> >>> This should work on any element with a match 'id' attribute. >>> I'd like us to get away from using element fo

Re: modernizing html output

2019-04-06 Thread Gavin Smith
On 4/2/19, Mathieu Lirzin wrote: >> I suggest trying just a simple "id selector": >> >> res = elem.querySelector("#" + linkid); >> >> This should work on any element with a match 'id' attribute. >> I'd like us to get away from using element for link definitions. >> For example (if we ca