PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my settings
my profile
Public Pastes
Multiple Invocatio...
4 sec ago
(($$$)) FREE WATCH...
13 sec ago
How to initialize ...
10 sec ago
Dianamodel com Cum...
12 sec ago
Antenna House XSL-...
17 sec ago
Untitled
28 sec ago
Untitled
24 sec ago
ENJOY!!! Union Est...
1 min ago
Selecting style tag of remote page
By: a guest on Jan 28th, 2012 | syntax:
None
| size: 0.28 KB | hits: 11 | expires: Never
download
|
raw
|
embed
|
report abuse
Copied
jQuery.get(contenturl, function(data) {
var css = jQuery(data).find('style').html();
alert(css);
});
jQuery.get(contenturl, function(data) {
var styles = data.match(/<style.*?>[sS]*?</style>/ig);
$("head").append(styles.join(""));
});
create a
new version
of this paste
RAW Paste Data
jQuery.get(contenturl, function(data) { var css = jQuery(data).find('style').html(); alert(css); }); jQuery.get(contenturl, function(data) { var styles = data.match(/<style.*?>[sS]*?</style>/ig); $("head").append(styles.join("")); });