Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. .mediumSquare{
  2. height:256px;
  3. width:50%;
  4. margin-left: 0px;
  5. margin-right: 0px;
  6. float: left;
  7. background-color: #eee;
  8.  
  9. div{
  10. width: 100px;
  11. height: 100%;
  12. float: left;
  13. }
  14. }
  15.  
  16. function updateTextInput(val, event) {
  17. console.log(event.currentTarget);
  18. selector = this;
  19. }
  20. $( document ).ready(function() {
  21. $('[type="range"]').each(function(){
  22. colorPalettes(this.id);
  23. })
  24. $('.mediumSquare > div').on('click', function(event){
  25. console.log(event.currentTarget);
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement