I'm creating WP Theme, I'm using slick slider and for nextArrow, prevArrow in main.js file, can't take image url path.
prevArrow: '<img class="a-left control-c prev slick-prev" src="img/left-arrow.png">',
nextArrow: '<img class="a-left control-c prev slick-prev" src="img/right-arrow.png">',
Also i have created one var in js
var templateUrl = '<?= get_bloginfo("template_url"); ?>';
and then, I have called this variable in this form:
prevArrow: '<img class="a-left control-c prev slick-prev" src="' + templateUrl + '/img/left-arrow.png">',
but did not work