Support

Account

Home Forums ACF PRO ACF taxonomy input text Reply To: ACF taxonomy input text

  • Hi @geppie030,

    Thanks a lot for contacting us.

    For such an implementation you would have to implement the Jquery function on the keydown event.

    $("#fieldId").keydown(function (e) {
      if (e.keyCode == 13) {
       //write the implementation here.
      }
    });

    I hope this helps.