Content deleted Content added
Tags: Mobile edit Mobile web edit
Line 42:
In this very moment you seem to be using a <mobileonly>mobile</mobileonly><nomobile>desktop</nomobile> device.
 
=== Mobileonly ===
Here is an html structure with block elements that should only show on mobile, using <code>&lt;mobileonly&gt;</code> tag:
==== Inline html ====
Here is a string that should only show on mobile devices: <mobileonly>**I AM A MOBILE DEVICE!**</mobileonly>
 
==== Block html ====
Here is an html structure with block elementselement that should only show on mobile, using the <code>&lt;mobileonly&gt;</code> tag:
<mobileonly>
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A MOBILE DEVICE!</div>
</mobileonly>
 
=== Nomobile ===
Here is a block element that should only show on desktop, using <code>&lt;nomobile&gt;</code> tag:
==== Inline html ====
Here is a string that should only show on desktop devices: <nomobile>**I AM A DESKTOP DEVICE!**</nomobile>
 
==== Block html ====
Here is a block element that should only show on desktop, using the <code>&lt;nomobile&gt;</code> tag:
<nomobile>
<div style="background-color:yellow;color:darkblue;font-weight:bold;text-align:center;">I AM A DESKTOP DEVICE!</div>
</nomobile>
 
Actually it seems that calling <code>self::isMobile</code> will not work when PHP is cached...
 
[[it:Utente:Johnrdorazio]]