Jquery .find() doesn't works in chrome but works in firefox
i'm using a validation plugin(position absolute) and it's works in firefox but don't in chrome.
i detected issue is in .find() Jquery method, works different in both browsers.
take a look at http://jsfiddle.net/kwtp2/1/ for a detailed sample of this error.
please, run it on firefox then in chrome.
firefox: found 5 matches, ch开发者_JAVA百科rome: found 0 matches
any suggestion?
Kind Regards, Rinaldo
You can't nest form elements. Your #dialogForm
is being closed by the form
immediately inside it (within the span helpDialog
).
That this works in Firefox seems a fluke. Nesting forms is definitely not good form...no pun intended.
@Rinaldo Sassaroli: See updated jsFiddle -- http://jsfiddle.net/kwtp2/7/
精彩评论