Search.../

item

Gets the gallery item.

Type:

QuickActionBarItemRead Only
NAME
TYPE
DESCRIPTION
itemType
string

The quick action bar item type.

One of:

  • "3dots"
  • "3dotsvertical"
  • "about"
  • "add"
  • "address"
  • "arrowdown"
  • "arrowup"
  • "blog"
  • "booking"
  • "briefcase"
  • "clock"
  • "clothes"
  • "cloud"
  • "contactform"
  • "creditcard"
  • "crown"
  • "currency"
  • "earth"
  • "ecom"
  • "email"
  • "facebook"
  • "flag"
  • "flickr"
  • "freebutton"
  • "gallery"
  • "googleplus"
  • "hamburgermenu"
  • "heart"
  • "home"
  • "hot"
  • "hotel"
  • "hotsale"
  • "icecream"
  • "instagram"
  • "lightning"
  • "link"
  • "linkedin"
  • "music"
  • "new"
  • "page"
  • "phone"
  • "pinterest"
  • "present"
  • "register"
  • "restaurant"
  • "rocket"
  • "sale"
  • "search"
  • "shoppingcart"
  • "signup"
  • "smile"
  • "social"
  • "speaker"
  • "star"
  • "ticket"
  • "twitter"
  • "vimeo"
  • "vk"
  • "yelp"
  • "youtube"
label
string

The quick action bar item label.

link
string

The quick action bar item link.

Was this helpful?

Get the quick action bar item that was clicked

Copy Code
1$w("#myQuickActionBar").onItemClicked( (event) => {
2 let itemType = event.item.itemType; // "search"
3 let itemLabel = event.item.label; // "Search"
4 let itemLink = event.item.link; // "https://www.google.com/search?q=wix"
5} );