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! :)