Сообщение от DenQ
|
Ну попробуйте создать средствами jQuery какой нибудь элемент в DOMe, вне
$(document).ready(function() {})
А я посмотрю, может чего нового узнаю...
|
похоже узнаешь
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
body {
font-family: "Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
}
a {
color: #016;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<p>я - содержимое странички
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script type="text/javascript">
$('<a href="#">я - сцылко</a>').appendTo(document.body);
</script>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
body {
font-family: "Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
}
a {
color: #016;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script type="text/javascript">
function f(){
$('<a href="#">я - сцылко</a>').appendTo(document.body);
}
$(function(){
f();
});
</script>
</head>
<body>
<p>я - содержимое странички
</body>
</html>
Сообщение от DenQ
|
Да и в любом случае с проблемой я уже разобрался
|
все так думают, но не все правы