﻿function copytoclipboard(elemnt) {
document.getElementById(elemnt).select();
document.getElementById(elemnt).focus();
if (document.all) {
textRange = document.getElementById(elemnt).createTextRange();
textRange.execCommand("RemoveFormat");
textRange.execCommand("Copy");
alert("با تشكر لطفا كد را در محل مناسبي از قالب وبسايت خود قرار دهيد");
}}