Expand|Select|Wrap|Line Numbers
- function color_input(id,token){
- if (!empty(token)){
- document.getElementById(id).style.backgroundColor = '#2A2A2A';
- document.getElementById(id).style.color = '#DDC58C';
- }else{
- document.getElementById(id).style.backgroundColor = '';
- document.getElementById(id).style.color = '';
- }
- }
Expand|Select|Wrap|Line Numbers
- <input type="text" id="example_name" onblur="color_input('example_name');">
Expand|Select|Wrap|Line Numbers
- function color_input(id,token=''){}