Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//condition fields for the end user request form make sure you change the field ID to yours. 
$j(document).ready(function() {  
   //check to see if you are on the end users request page
   if(location.pathname === '/requests/new') {
      //toggle the field ,description and title invisible
      $j('h3:contains(Phase 1 completed By)').toggle();
      $j('p:contains(please put something here)').toggle();
      $j('input#ticket_fields_114704').parent().toggle();

      //monitor the dropdown field
      $j('select#ticket_fields_104609').change(function(endUserselect){
          //grab the value of the dropdown
          var userSelection = $j('select#ticket_fields_104609 option:selected').text();

          //do the compare and toggle the field ,description and title visible 
          if(userSelection === 'Twitter'){
               $j('h3:contains(Phase 1 completed By)').toggle();
               $j('p:contains(please put something here)').toggle();
               $j('input#ticket_fields_114704').parent().toggle();
              }
          //hide them again if the user changes his mind
          else {
               $j('h3:contains(Phase 1 completed By)').hide();
               $j('p:contains(please put something here)').hide();
               $j('input#ticket_fields_114704').parent().hide();
             }

         });

   }
});