supposeSuppose I have an htmlHTML document that looks like this:
<html lang="en"> ... </html> myMy question is : how to get the value of the attribute langlang with jQuery?
I've tried $("html").attr("lang")$("html").attr("lang") but it did not work ... any any suggestions ?
thanks a lot !