احساس شاعری, شعر شاعری, اردو اشعار, poetry ek ehsas

Win in Poetry contest in *Poetry Ek Ehsas* ( شاعری ایک احساس) Group

Win in Poetry contest in *Poetry Ek Ehsas* ( شاعری ایک احساس) Group

نہ ہٹاؤ ان آنسوں کو میرے چہرے سے

یہ میرے جذبات کی عکاسی کرتے ہیں

منیر صدیقی

 آنسوں

JavaScript

How to remove “#” from URL, after refresh page

Use this Script in your Html.

<script>
window.location.replace(“#”);

// slice off the remaining ‘#’ in HTML5:
if (typeof window.history.replaceState == ‘function’) {
history.replaceState({}, ”, window.location.href.slice(0, -1));
}
</script>