top of page
Search

DISPLAYING ELEMENTS IN MOBILE ONLY - VELO BY WIX

  • Writer: eggwebtut
    eggwebtut
  • Mar 12, 2021
  • 1 min read

$w.onReady(function () {

// Write your JavaScript here


// To select an element by ID use: $w("#elementID")


// Click "Preview" to run your code

});

import wixWindow from 'wix-window';


$w.onReady(function () {

if(wixWindow.formFactor === "Mobile"){

$w("#your_element's_ID").show();

}

});






 
 
 

Recent Posts

See All

Comments


bottom of page