How to make the fields pre-filled when we start to write something
Hello everybody who speaks HTML...
I have a problem :
In the resume edit page (of a job seeker session), the field "languages" is automatically pre-field as soon as we write a lettre which is already existing in one of the existing langage.
I would like to know how to do the same thing for the field "group". In this field I would like the automation of the "job specialities" when I start to write inside it. Because job roller doesn't do it for this field.
I tried to change the HTML code of the submit-resume-form.php like this : (but it's not working)
<p class="optional" id="resume_specialities_wrap"><label for="specialities"><?php _e('Curent licence type (have to be chosen in the list): <small>i.e. your speciality</small>', APP_TD); ?></label> <input type="text" class="tags text tag-input-commas" data-separator="," name="specialities" id="specialities" placeholder="<?php _e('e.g. english spoken, team management', APP_TD); ?>" value="<?php if (isset($posted['specialities'])) echo $posted['specialities']; ?>" /></p>
Maybe I don't write the words "resume_specialities" on the good way, because if I remplace it by "language" word, IT'S WORKING !!!!!!
But I dont want here the languages !!! I want the job specialities as they are mentioned in the back office / resume / resume specialties column ...
Please HELP