skip to Main Content

Accessing Shopify Liquid variables in Javascript

My question is, is it possible to do access the variables in Shopify Liquid using Javascript? {% assign my_array= "apples, oranges, peaches, tomatoes" | split: ", " %} function my_function(number){ return "{{my_array[number]}}"; } $('#click_me').click(function(){ alert(my_function(0)); }); I know this is…

VIEW QUESTION
Back To Top
Search