How can I place an img element right after a select and have it fade out ?
What I’ve tried so far:
appendTois not suitable as it places elements inside theselectelement.afterneeds to be called from theselectelement so chaining afadewill act on theselectand not theimg.
Try
.insertAfter()Using this the chaining effect will be attached to the image element.
DEMO