fadeIn() CSS proplem
fadeIn() CSS proplem
hey guys im using the fadeIn() function in my script but when using it i've noticed it puts a style on my break, input and label tags
style:
- style="display: inline;"
using fadeIn() :
- $(input_field).appendTo('div#' + selector).hide().fadeIn(1200);
html output:
- <label style="display: inline;" for="game_types2">Game Type - Name 2 : </label>
- <input style="display: inline;" id="game_types2" name="game_types2" value="" type="text"><label style="display: inline;" for="game_types_abbreviated2">Game Type - Abbreviated 2 : </label>
- <input style="display: inline;" id="game_types_abbreviated2" name="game_types_abbreviated2" value="" type="text"><br style="display: inline;">
can anyone tell me how i can stop this happening please?
thank you