What does this: '+variable+' mean?
I use jQuery append method to add some DOM element:
$('#story_pages').append('<div><button value="'+window_value+'" onclick= "reload_to_canvas(this.value)" ><img id="w'+window_value+'", src=white_data_URL, width="100px", height="100px"/> </button></div>');
Actually, I don't why this works... If I just write
value= window_value
img id= w+window_value
,and use the selector
$('#(w+window_value)')
to find the element. It must fail.
What is this operator? '+variable+'
And why should we use the weird notation "'+variable+'"?
When should we use this notation?