javascript - function not passing into model pop up -
i have model, trying pass function parameter in pop up... model function not taking parameter... providing code below...
i trying pass function in model cnfrmmsgmdles
<!doctype html> <html> <head> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").click(function(){ $(this).hide(); }); }); </script> </head> <body> <p>if click on me, disappear.</p> <p>click me away!</p> <p>click me too!</p> </body> </html>
Comments
Post a Comment