I want to add the css styles that an application has with jquery , I have tried in the following way but I have not been able to get it to work:
// Llamó los al "<links/>" al index, por medio de una funcion que tengo establecida en un
// documento js
<script>
$(function(){
var inicio = new Index();
inicio.cssLib();
});
</script>
js
function Index(){
this.cssLib = function(){
// he intentado hacerlo con un after y aca con un append pero no he tenido
// éxito
// (no estoy seguro que el append funcione de esta forma, pero quise intentarlo)
$('title').append(function(){
$(this).load("assets/links/cssLinks.html");
});
}
}
Yes they can be added, both with append() and appendTo() , I did a quick test with
$.ajax()
, since.load()
it is just a quick way to call this method: