I currently have a stylesheet in the head section with the following content:
*, body { direction:rtl; }
Upon inspection, I found that the dir variable of jQuery is set to ltr:
$(function(){
alert(this.dir); });
How can I obtain the specific page direction?
Thank you