Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Marek Heintzel
11,658 PointsWhy my inline editor doesn't work as intended?
Hey! I wanted to try out my abilities and write a simple application - an inline text editor. However - it doesn't work as it should. It replaces only the text, excluding the html. The project is based on jQuery.
Here's my project. You can view the code here:
1 Answer

Dan Martin
33,150 Points$('.container').children().click(function() {
let element = $(this); // Hold on to this value which stores element and it's contents
let placeHolder = $(this).html(); // Use this as your placeholder
let fontSize = $(this).css("font-size");
let elementWidth = $(this).css("width");
$(this).replaceWith("<input size='50' placeholder='"+placeHolder+"' type='text' style='font-size: "+fontSize+"; width: "+elementWidth+"'>");
$('input').focus().keypress(function(e){
if (e.which === 13){
// Replacing input element with stored element and change it's contents
$(this).replaceWith($(element).html($(this).val()));
}
});
});