I want to add the css styles that an application has with
Yes they can be added, both with append () and with appendTo () ,
I did a quick test with $.ajax()
, since .load()
is just a quick way to call this method:
$.ajax('assets/links/cssLinks.html')
.done(function(data){
$('title').append(data);
})