In javascript, I know I can get a value from my model into a javascript variable as follows:
function myFunctionName()
{
var id = @Model.ID;
//etc
}
What I'd like to do is customise the name of the function itself using the Model ID value, so that it comes out like:
function myFunctionName_1()
{
//etc
}
Is this possible?