I have some jQuery code which works perfectly but today I've added some extra javascript in my page. Now jquery won't work anymore.
Page code is the following.
<script type="text/javascript">
window.onload=wrapperLink;
</script>
wrapperLink function is:
function wrapperLink()
{
document.body.innerHTML=document.body.innerHTML.split('UDF').join('<a href=../VBAMakro/Fonksiyonlar_UDFKullaniciTanimliFonksiyonlar.aspx>UDF</a>');
}
With this function, I'm trying to change all UDF
text to a link, and they really changes to links, but jquery gets function-less.