JQuery Dialog not displaying imput type text [closed]
I have been trying to add a standard html :<imput type="text" value="">
into a JQuery dialog box, but it does not show up. I have tried with a selector and it was working.
I don't understand why it doesn't with text imputs.
Typo? Input vs. Imput?
<input type="text" value="">
Double check that tag - you wrote imput twice in your question so it might be imput in your code. Try this:
<input type="text" value="" />
It was done here: modal-form
Also, it could be that you are spelling input "imput" (with an 'm' as opposed to an 'n').
精彩评论