Can an element be added inside the title / title tag with an append?

2

I want to add the css styles that an application has with

asked by Alan 02.08.2016 в 21:03
source

1 answer

2

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);
  })
    
answered by 02.08.2016 / 21:12
source