Codebits Info? and Bonsai Project Submission

22 views
Skip to first unread message

J.01

unread,
Mar 24, 2016, 10:48:16 PM3/24/16
to Codecademy Projects Help Forum
Hi,

I was wondering if you can tell me how to get those fancy codeacademy codebits. I really wanted to submit my project as a codebit but I'm not seeing an option for codebits anywhere in my profile. What's the 411 with this?

Also, Here my first solution to a Jquery Project. It's for Bonsai.

var main = function() {
  
//TOP TEXT
  $('#top-text').keyup(function() {
  var input = $(this).val();
   $('.top-caption').text(input);
  });
//BOTTOM TEXT
  $('#bottom-text').keyup(function() {
var input = $(this).val();
   $('.bottom-caption').text(input);
  });
//IMAGE 
  $('#image-url').keyup(function() {
  var image = $(this).val();
   $('.thumbnail img').attr('src', image);
  });
  
};

$(document).ready(main);





Thanks! :)
Reply all
Reply to author
Forward
0 new messages