The value of the share is 10 riyals and the minimum subscription is 500 shares
For more information and subscription
0554119933
- Subscription Manager Al Rajhi Bank

- Account Number 609608019990998
- Iban SA79 8000 0609 6080 1999 0998
More details
To contact us or to
request a visit, please call us or communicate via WhatsApp
whatsapp 0554119933
//console.log(inputValue);
// var y = document.getElementById("myText");
// y.addEventListener("keyup", myThirdFunction);
// function myThirdFunction() {
// var result = 0;
// var inputValue = parseInt(document.getElementById("myText").value); // عدد الأسهم
// var Nomina = parseInt(document.getElementById("Nominal").value); // القيمة الاسمية للسهم
// var Issue = parseInt(document.getElementById("Issue_premium").value); // علاوة الإصدار
// var Membership_fee = parseInt(document.getElementById("membership_fee").value); // رسوم العضوية
// if (inputValue && Nomina && Issue) {
// // حساب قيمة السهم مع علاوة الإصدار
// var totalSharePrice = Nomina + Issue;
// // حساب رسوم العضوية كـ 10%
// var membershipCost = (Membership_fee / 100) * totalSharePrice;
// // حساب الإجمالي
// result = (totalSharePrice + membershipCost) * inputValue;
// var n = result.toFixed(2);
// } else {
// n = 0;
// }
// document.getElementById("demo").innerHTML = n;
// document.getElementById("output").value = n;
// }