Add font awesome icon to full calendar title

后端 未结 6 1143
不思量自难忘°
不思量自难忘° 2020-12-15 23:41

I\'m using wordpress, formidable forms and full calendar to create a bespoke calendar solution

I have everything working except for I\'d like to add a font awesome i

6条回答
  •  离开以前
    2020-12-16 00:00

    if you want to replace a text with icon, you can use below code

    eventRender: function(event, element) {
       element.find(".fc-title").html(function () { return $(this).html().replace("Rs", "")});
    }
    

提交回复
热议问题