For each element of class "new" I want to show a title on hover. So using jquery I do this:
$(".new").attr("title", "import the new item");
Is it possible to create this attribute via CSS? Since we can create content I thought maybe this is possible too. So I am looking for something like
.new
{
attr(title): "import new item"; // create property via css
}