Показать сообщение отдельно
  #4 (permalink)  
Старый 17.07.2012, 22:07
что-то знаю
Отправить личное сообщение для devote Посмотреть профиль Найти все сообщения от devote
 
Регистрация: 24.05.2009
Сообщений: 5,176

document.namespaces.add('v', 'urn:schemas-microsoft-com:vml' );
document.createStyleSheet().cssText = 'v\\:group,v\\:rect{behavior:url(#default#VML)}';
var a = document.createElement("v:group");
a.style.width = "200px";
a.style.height = "300px";
var b = document.createElement("v:rect");
b.style.width = "100px";
b.style.height = "50px";
b.strokecolor = "#000000";
b.fillcolor = "#ffffff";
a.appendChild(b);
document.body.appendChild(a);
__________________
хм Russians say завтра but завтра doesn't mean "tomorrow" it just means "not today."
HTML5 history API рассширение для браузеров не поддерживающих pushState, replaceState
QSA CSS3 Selector Engine
Ответить с цитированием