Benutzer:Aggroblut/common.js: Unterschied zwischen den Versionen
Aus SchnuppTrupp
| Zeile 1: | Zeile 1: | ||
alert("test"); | alert("test"); | ||
| + | |||
| + | $("#kalender-container").html(function(){ | ||
| + | // There could be multiple target elements, i guess you should loop and return the html | ||
| + | var htm = ''; | ||
| + | $("#kalender").contents().find(".filter-view-hd").each(function(){ | ||
| + | htm += this; | ||
| + | }); | ||
| + | return htm; | ||
| + | }); | ||
Version vom 17. April 2018, 23:30 Uhr
alert("test");
$("#kalender-container").html(function(){
// There could be multiple target elements, i guess you should loop and return the html
var htm = '';
$("#kalender").contents().find(".filter-view-hd").each(function(){
htm += this;
});
return htm;
});