I just getting started with meteor so I want to use append function in jquery but it not append anything
JS:
if (Meteor.isClient) {
Meteor.startup(function() {
$( "span" ).append('Hello');
});
I get no errors and nothing happens or appending.
HTML:
<span>lorem ipsum</span>
<p>stackoverflow</p>
i think the problem is $('span').append('Hello'); it loading before the html code ??