i add an iframe to my web but everytime it cache the url so the best option for me is everytime to make link like this
http://example.com/ex.html?RANDOMNUMBERS
http://example.com/ex.html?123o8173oy12389
so it will not be cached how can i add example Math.random(); to my url i try this but it doesnt work
<iframe id='iframe2' src="http://example.com/ex.html?<script>Math.random();</script>" frameborder="0" style="overflow: hidden; height: 100%;
width: 100%; position: absolute;"></iframe>
(i can not use php)