Currently in the process of developing a customized Google Chrome extension.
Encountering an issue or experiencing confusion regarding the selection of a specific class to integrate into my jQuery script, particularly with numerous classes associated with the textarea element.
Requesting assistance from someone knowledgeable about which class would be most suitable for this purpose.
CSS
._5t_y ._4_z2 .input, ._5t_y ._4zz- .input, ._5t_y.child_was_focused ._2yg .input
or
HTML
class="uiTextareaAutogrow input autofocus _34z- mentionsTextarea textInput"
Attempting to incorporate it into the existing code snippets. Initially experimented with ".input", but encountered issues with its functionality.
$(document).ready(function() {
$('.input').specialedit([':-)', ':-(', ';-)'],
{ buttonWidth: 30,
buttonHeight: 30,
toolbarBgColor: '#ff0',
toolbarBorderColor: '#f00',
buttonBgColor: '#fff',
buttonBorderColor: '#f00',
buttonTextColor: '#f00' });
});