File indexing completed on 2024-11-24 04:54:31

0001 /**
0002  * SPDX-FileCopyrightText: 2022 Aditya Mehra
0003  * SPDX-License-Identifier: GPL-2.0-or-later
0004  */
0005 
0006 var element = document.getElementsByTagName("INPUT"); var index; for(var index = 0; index < element.length; index++) {element[index].onfocus = function(){console.log(JSON.stringify({"inputFocus": "GotInput", "className": document.activeElement.form.className, "id": document.activeElement.id}))}};