How do return a javascript function return an HTML?

2

I took the following function in JavaScript (jQuery):

      function CustomAlert() {
            this.show = function (nome) {


            };

        }
        var Alert = new CustomAlert();

        $(document).ready(function () {
            Alert.show('meu nome e hugo');
        });

How do I get it back, write the following HTML screen:

<div class="nome">meu nome e hugo</div>
    
asked by anonymous 31.08.2016 / 15:31

1 answer

4

Just direct the message using one of the following Jquery codes, both work however with a slight difference see:

$("div.nome").html('meu nome é <b>hugo</b>');//a tag <b> é renderizada

Can also be used with "text":

$("div.nome").text('meu nome é <b>hugo</b>');//a tag <b> é string e não renderiza.

More information you can find in the links below:

link

link

Good luck!

    
31.08.2016 / 15:41