Question

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.

Was it helpful?

Solution

Typo? Input vs. Imput?

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

OTHER TIPS

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').

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top