This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ExifTool Version Number : 13.52 | |
| File Name : art002e000192.jpg | |
| Directory : /Users/hannes/Downloads | |
| File Size : 6.2 MB | |
| File Modification Date/Time : 2026:04:03 23:12:02+02:00 | |
| File Access Date/Time : 2026:04:03 23:12:03+02:00 | |
| File Inode Change Date/Time : 2026:04:03 23:12:02+02:00 | |
| File Permissions : -rw-r--r-- | |
| File Type : JPEG | |
| File Type Extension : jpg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Function to convert HTML table to array | |
| function tableToArray(tableId) { | |
| const table = document.getElementById(tableId); | |
| const rows = table.getElementsByTagName('tr'); | |
| const result = []; | |
| for (let i = 0; i < rows.length; i++) { | |
| const row = []; | |
| const cells = rows[i].getElementsByTagName('td'); | |
| const headerCells = rows[i].getElementsByTagName('th'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // jQuery.support.transition | |
| // to verify that CSS3 transition is supported (or any of its browser-specific implementations) | |
| $.support.transition = (function(){ | |
| var thisBody = document.body || document.documentElement, | |
| thisStyle = thisBody.style, | |
| support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined; | |
| return support; | |
| })(); |