var first = [] ;
var second = [];
var current_collection = first;
$('img , h1').each(function(){
if(this.tagName === 'IMG'){
current_collection.push(this);
}
else{
current_collection = second;
}
});
console.log('first-' + first );
console.log('second-' + second );
$string = '<!DOCTYPE HTML><html> <head> <meta charset="utf-8"> <title>Тег А</title> </head> <body> <p><a href="images/xxx.jpg">Посмотрите на мою фотографию!</a></p> <p><a href="tip.html">Как сделать такое же фото?</a></p> </body></html>';
$pattern = "/(\<a.*<\/a\>)/i";
$replacement = "";
$res = preg_replace($pattern, $replacement, $string);
echo $res;
.st1:after{
margin-left: 10px;
content: "";
font-family: 'Glyphicons Halflings';
color: red;
}
А как сделать иx разного цвета?