Chris Bigelow

Results 6 issues of Chris Bigelow

If an app is already using `walk` it would be a shame to have to re-parse the src a second time just to get access to the parsed AST directly....

Sometimes scripts create new cookies which don't appear in the inspector without closing and re-opening the Developer Tools or refreshing the current page. This is a problem because sometimes you...

- I think that the callback doesn't work - We don't have any specs - No clear definition of what attributes can/can't be animated (scroll, etc)

jQuery successfully adds 2 nodes to the document `jQuery('body').prepend('ONETWO')` Dollar incorrectly only adds the first one `$('body').prepend('ONETWO')`

``` text $('div').css('--color') ; // should return "red" $('div').css('--color','blue') ; // should change text color to blue //without jQuery we must currently do it like this: getComputedStyle($('div')[0]).getPropertyValue('--color') ; $('div')[0].style.setProperty('--color','blue') ;...

Love the idea of a "mobile" vs "desktop" user experience differentiator, but I worry that using `Sec-CH-UA-Mobile: 1` is shortsighted. We all know that the type (and amount) of content...

enhancement