I was trying to build a responsive form, that i would then have used in some of my websites, but got stuck with a little detail. I want to enable input validation with javascript, so when a user inserts an invalid input in an input text box, I want an error message to pop up by the box, with an IMG tag at the right of the input and a DIV tag under the input. I achieve this by appending (jQuery) these elements to the input's parent element, which is a LABEL.
Here is the base input:
<label for="errore"><span class="title">Errato</span><input type="text" name="errore" id="errore" size="30" maxlength="30" value="Cliccami e poi esci"/></label>
and here is how i append the elements.
$(this).parent().append("<img class='error' src='css/img/cross.png' alt='error' /><span class='error'>Input non valido.</span>");
so, if the user then inputs a correct input and exits the INPUT tag, the error message should disappear. I do this by removing the elements like this:
$(this).parent().find("*.error").remove();
And it works just fine. But, if i follow this sequence: Wrong input, exit element, error message, correct input, exit element, error message disappears, wrong input, exit element, error message reappears BUT the image is on new line! And that's only in chrome. Dunno why. It seems to depend on the element next to the IMG element, if it's an inline element it works fine both the 1st and 2nd time, if it's a block element it works fine the 1st time and wrong the 2nd.
So, my problem is the image element, i don't want it to go on a new line, but I want the element next to it to be a block element.
I know this may be not so clear, so I'll include my example.
in the example it's sufficient to enter and then exit the input with the title "Errato", to add the error message, and then enter and exit to remove it. So if you do that 3 times you should get the wrong error message.
it looks like the image is going to display: block or something, 'cause the effect is that, but if you check the css on the browser's console, it's actually display: inline.
If you need more details, feel free to ask.
src='css/img/check.png'to the image URL. – Jack Apr 18 '12 at 9:16