Ich möchte in JQuery text einen einen HTML Code mit ausgeben ist das möglich?
var price = JSON.parse(data);
<a href etc wird als Text ausgegeben. wie erkennt der dass dass HTML Code sein soll?
var price = JSON.parse(data);
PHP-Code:
var hallo = 'Der Preis heute ein: '+price[dd].preis+' Gesponsert von: <a href="'+price[dd].sponsor_url+'">'+price[dd].sponsor+'</a> ';
$('#Preis').text(hallo);
Kommentar