Guest User

Untitled

a guest
Apr 25th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <select id="division" multiple="multiple" title="Equipos seleccionados" style="width:143px;height:125px;overflow:scroll;">
  2. <option value="1" title="Bundesliga">Bundesliga</option>
  3. </select>
  4.  
  5. _spBodyOnLoadFunctionNames.push("hideFields");
  6.  
  7. function hideFields() {
  8. var control = findcontrol("equipo");
  9. control.parentNode.parentNode.parentNode.style.display = "none";
  10. }
  11.  
  12. function showFields() {
  13. var control = findcontrol("equipo");
  14. control.parentNode.parentNode.parentNode.style.display = "block";
  15. }
  16.  
  17. function findcontrol(field) {
  18. var arr = document.getElementById(field);
  19. return arr;
  20. }
  21.  
  22. var values = document.getElementById('division').val();;
  23. if (values != null || values != ''){
  24. showFields();
  25. }
Add Comment
Please, Sign In to add comment