I have the function below which needs to be called from C#
$('.image-cropper').each(linkUp);
Can anyone explain how it could be done. I tried using the below code
String csname1 = "PopupScript";
Type cstype = this.GetType();
ClientScriptManager cs = Page.ClientScript;
StringBuilder cstext2 = new StringBuilder();
cstext2.Append("<script type=\"text/javascript\"> $('.image-cropper').each(linkUp); </");
cstext2.Append("script>");
cs.RegisterClientScriptBlock(cstype, csname1, cstext2.ToString(), false);
but it did not work.
$(document).ready()so the DOM's loaded when you try to select elementsasp.net-mvc? I sincerely hope you are not using anything like this in an ASP.NET MVC application.