Сообщение от rodiony4
|
Есть вариант для jquery-1.6?
|
проще без jquery совсем, но если хочется ...
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script>
$(function() {
$( "#cap_map" ).one("click",function() {
var s = document.createElement("script");
$('.cap_site_map')[0].appendChild(s);
s.src= "https://api-maps.yandex.ru/services/constructor/1.0/js/?sid=vcnFFhOJuYXv6CT5peVIb3cADSfa6GLS&width=600&height=450&lang=ru_RU&sourceType=constructor"
});
});
</script>
</head>
<body>
<span id="cap_map">показать</span>
<div class="cap_site_map"></div>
</body>
</html>