• Kyle Mathis 7
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
Here's the code. The flip works just fine but no dice on the click. It works in code pen/js fiddle etc. I just can't get it all to fire off in VF page. This isn't the entire code but this is where the issue is. If this part would run we'd be gravy. 

  <html>  
     <head>  
     <apex:stylesheet value="{!$Resource.TilesStyles}" />   
      <script src="//code.jquery.com/jquery-3.2.1.js"></script>  
      <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script> 

       <script>  
         $(document).ready(function(){  
            $('.hover').hover(function(){  
             $(this).addClass('flip');  
            },function(){  
             $(this).removeClass('flip');  
            });  
         });
          
       $("#additionalDivOne").on("click", function(){
         alert('this is not working');
       });