I recently came across a problem when trying to rearrange the DOM in Jquery prior to the final layout.
It appears that if you do a Jquery like this :
you need to put the attribute name in lowercase or it won't be found.
same with:
I'm using the PHP wrapper along with the convert_string_to_passthru function and using file_get_contents to get the content from another file.
Idk if this applies to the CLI version or other wrappers but after searching for hours i couldn't find any references to this problem. It's actually super easy to fix but would require a notice somewhere because otherwise you're left with almost nothing to find the problem.
It appears that if you do a Jquery like this :
$("[attributeVal]")
you need to put the attribute name in lowercase or it won't be found.
same with:
$("element").attr("attributeVal")
I'm using the PHP wrapper along with the convert_string_to_passthru function and using file_get_contents to get the content from another file.
Idk if this applies to the CLI version or other wrappers but after searching for hours i couldn't find any references to this problem. It's actually super easy to fix but would require a notice somewhere because otherwise you're left with almost nothing to find the problem.