javascript - printing path name in browser for a spring framework -


i integrating js html.. end spring frame work... dont have knowledege abt spring frame work... trying print path name path="xxcpdeprbehavior.name"in browser... providing code below...

    <!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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -