jQuery call from vb.net code

jQuery call from vb.net code

I need to call this jquery function from VB.net 

  1. jQuery(function ($) {
  2. $("input.osx, a.osx").click(function (e) {
  3. e.preventDefault();
  4. $("#osx-modal-content").modal({
  5. overlayId: 'osx-overlay',
  6. containerId: 'osx-container',
  7. closeHTML: '<div class="close"><a href="#" class="simplemodal-close" style="font-size:150%;">x</a></div>',
  8. minHeight:80,
  9. opacity:65, 
  10. position:['0',],
  11. overlayClose:true,
  12. onOpen:OSX.open,
  13. onClose:OSX.close,
  14. appendTo:'form'
  15. });
  16. });