southbeach
Programmer
I have a very simple snippet
some where in my .js file, I have
works in every browser except for Win-10 MS-Edge.
I have jquery based slide and the slide works fine yet, onclick() does not.
What am I missing here?
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.
Code:
<input class="jlSubmitForm" type="button" onmouseover="this.style.cursor='pointer';" name="Submit" value="Log in!" onclick="submitForm('1');" style="width: 80%; border: 1px solid rgb(0, 0, 0); cursor: pointer;">
some where in my .js file, I have
Code:
function submitForm(strKey) {
alert('Hello!');
}
works in every browser except for Win-10 MS-Edge.
I have jquery based slide and the slide works fine yet, onclick() does not.
What am I missing here?
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.