Skip to content Skip to sidebar Skip to footer

Input Type Submit Not Working In ONLY Chrome

I've seen several questions asked about simple buttons not working in chrome, but I still am yet to find a solution. there is no js/jq attached to t

Solution 1:

ok, so i found what was causing my instance of this problem to crash. Using chrome's console, I noticed that I had incorrectly used an input, type=text, that was named 'size'. this was causing chrome to throw an error and not continue with the submit. I moved the input[name="size"] out of the form and it worked fine. i could have changed the name of that input box, but that would require me changing it in a lot of instances, and the ajax involved with that box didn't care if it was named size

lesson: chrome doesn't like input's named size

that is all


Post a Comment for "Input Type Submit Not Working In ONLY Chrome"