ads

Wednesday, September 12, 2012

Redirect a User from the SharePoint Display Form to the Edit Form

<script type="text/javascript">

//getting  the url
var url=document.URL;

//set variable for change
var replacement='DispForm';

//replacing DispForm with EditeForm
url= url.replace(new RegExp(replacement, 'g'), 'EditForm');

//redirect a web page to a new url
window.location.href=url;
</script>
Do you like this post?
Buy me a cup of coffe to show your appreciation!

1 comment: