I would like to load javascript files only on Desktop version of my Google blogspot (blogger.com) since I need a light version of my blog for mobile.
I came through followings, but not working
<b:if cond != 'data:blog.isMobile'>;
<b:if cond = !'data:blog.isMobile'>;
<b:if cond = '!data:blog.isMobile'>;
<b:if cond='data:blog.pageType !== "data:blog.isMobile">
How can I write "is Not Mobile" conditional in Google blogspot? Thanks in advance for all answers.
================================================================================
Update: I'm using following code at the moment and it's working but better ideas are welcome
<b:if cond='data:blog.isMobile'>
<b:else/>
//I include javascript files here and they only appear on desktop version
</b:if>