I have a function!
$(document).ready(function() {
$(".tstInfo").on("click",function(){
$.toast({
heading: 'Welcome to my Elite admin',
text: 'Use the predefined ones, or specify a custom position object.',
position: 'top-right',
loaderBg:'#ff6849',
icon: 'info',
hideAfter: 3000,
stack: 6
});
}); });
I want to call it from code behind in asp.net please tell me how to do it. Thanks in advance
$.ajaxin the jQuery docs$ajaxis helpful when you want to call from client to server , but from server to client its not possible with it