// JavaScript Document var ResizeIframe = { wrapperId : "tinc_content",
/** * Resizes an iframe sId including oDoc to oDoc's content size. * Can be called top-down, i.e. from the including iframe (or it's parents) or bottom-up, i.e. from the included document. * In the latter case the iframe element is retrieved programmatically. * * @param oDoc Included page's document object * @param sId ID of including iframe */ resize : function ( oDoc, sId ) { try { if ( typeof oDoc == "undefined" ) return;
if ( typeof sId != "undefined" ) { var iframe = oDoc.getElementById( sId ); var iframeDoc = iframe.contentWindow.document; } else { var iframeDoc = oDoc; var iframeWindow = iframeDoc.parentWindow || iframeDoc.defaultView; var iframe = iframeWindow.frameElement; } var wrapper = iframeDoc.getElementById( this.wrapperId );
// make sure we only resize once if ( iframeDoc.isIntegrated == true ) { return; }
// switch on transparency for iframe iframeDoc.body.style.backgroundColor = "transparent"; iframe.allowTransparency = "true";
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
Sixella
Добрый день.
Вот уже несколько дней бьюсь над одной проблемой, перерыл много ресурсов интернета но проблема так и остается.
Необходимо при помощи яваскрипта со страницы "контакт" отправлять мейлы на почтовый ящик.
КАК ЭТО СДЕЛАТЬ ???
вот страница www.stasart.com/fr/contact
а вот скрипт
код скопирован с сайта предоставляющего доменное имя.
Спасибо большое за помощь
Link to comment
Share on other sites
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.