jQuery call from vb.net code
I need to call this jquery function from VB.net
- jQuery(function ($) {
- $("input.osx, a.osx").click(function (e) {
- e.preventDefault();
-
- $("#osx-modal-content").modal({
- overlayId: 'osx-overlay',
- containerId: 'osx-container',
- closeHTML: '<div class="close"><a href="#" class="simplemodal-close" style="font-size:150%;">x</a></div>',
- minHeight:80,
- opacity:65,
- position:['0',],
- overlayClose:true,
- onOpen:OSX.open,
- onClose:OSX.close,
- appendTo:'form'
- });
- });