views:

131

answers:

3

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.

+3  A: 

Typo? Input vs. Imput?

<input type="text" value="">

danimajo
+1  A: 

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="" />
Andy Gaskell
A: 

It was done here: modal-form

Also, it could be that you are spelling input "imput" (with an 'm' as opposed to an 'n').

qwertypants