Answers for "jquery val style"

0

jquery val style

<input type="button" style="width:50px" id="wave_id" value="Wave" data-action="button">
Posted by: Guest on February-18-2021
0

jquery val style

if (data.status == 'Waved') {
  $("#wave" + data.id).val("Unwave").css('width', '50px');

} else if (data.status == 'Unwaved') {
  $("#wave" + data.id).val("Wave").css('width', '60px');
}
Posted by: Guest on February-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language