Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Marek Heintzel
Marek Heintzel
11,658 Points

Why 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.

http://xhusky.ct8.pl/inline/

Here's my project. You can view the code here:

http://xhusky.ct8.pl/inline/js/app.js

1 Answer

$('.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())); 
        }
    });
});