I am stuck up in a requirement where i need to get the site collection url to pass in a function. Please help?

link|improve this question
2  
What is a "site collection url"? – Armin Jan 17 at 13:09
1  
@Armin -- google it. Vinod -- you need to explain where you're having a problem. – maxedison Jan 17 at 13:14
Are you kidding? It is not me, who has a question about it! But maybe I should open a question on stackoverflow ;-) – Armin Jan 17 at 13:17
3  
Armin, this is SharePoint specific (and, if you work in that field, it is a very common term). Since the post was tagged with "SharePoint", there is no need to explain it in the question. – naivists Jan 17 at 13:19
feedback

closed as not a real question by August Lilleaas, Stefan, Andrew Barber, Shoban, the Tin Man Jan 18 at 10:09

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

You can use the L_Menu_BaseUrl variable, it is set automatically by some of SharePoint's default scripts.

You can find more information about it here

link|improve this answer
feedback

you have 2 options: 1) in your javascript use the L_Menu_BaseUrl variable. it contains the relative url of the site collection 2) if you need the absolute url you can use the following javascript code snippet in the server control:

<script type="text/javascript">
    var siteUrl = "<%= SPContext.Current.Site.Url %>";
</script>

It renders absolute url to the site collection. the approach (2) allows you to form up the url you need on the server side.

I hope you got the idea. Good luck.

link|improve this answer
or SP.ClientContext.get_current().get_url() – Bogdan M. Apr 13 at 8:59
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.