Laravel 3.x Assets: how to include an external url -


i'm trying include google cdn jquery link laravel assets container link being concatenated site address, this:

<script src="http://mybeautifulsite.com/<script src=" http:="" ajax.googleapis.com="" ajax="" libs="" jquery="" 1.8.3="" jquery.min.js"=""></script> 

is there way include external links assets container?

edit

here's code i'm using include asset:

asset::add('jquery', '<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>'); 

should be:

asset::add('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js'); 

whilst the documentation not explicitly talk absolute urls, code written in such way handle them.


Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -