Tobias Buschor
Tobias Buschor
Hi Shubjhamb I discontinued the work on this project.
Hi Jonathan Thank you for your feedback. I would have to have a real CSS parser instead of the regular expressions to make this work. > (with your approval) Feel...
> > Data URLs break with inner URLs > I believe this will be resolved with #58 Merged, all my test passing! New Version 4.1.0 Thx! > I am still...
Thanks for your feedback. Can it be that it always concerns !important?
Thank you for your feedback! Yes, IE has a bug, where unknown properties at pseudo-selectors are computed at the element and not at the pseudoelement. This meens, you can set...
@karungn1 Maybe your issue is this one fixed resently? https://github.com/nuxodin/ie11CustomProperties/issues/15 Do you have the latest version?
Sorry, at the moment, its a too big puzzle for my spare time....
I also use this "hack" to send an "unchecked" checkbox in a form: ```html ``` This hack has a rating of 516 at stackoverflow https://stackoverflow.com/a/1992745/4865307 And it is mentioned at...
My final solution would be: ```html ``` ```js checkbox.value // no checkbox.checked = true; checkbox.value // yes ``` Advantages: - Also unchecked checkboxes sends something (as default an empty string)...
This suggestion was discussed and it was concluded that traditional check boxes should also be given an off value (as I understand it) https://github.com/whatwg/html/issues/4180#issuecomment-1645108696 This will probably look something like...