thelee Posted November 25, 2012 Share Posted November 25, 2012 hellow. i found a coding at http://jsfiddle.net/Pw2Pp/ i think i want to use it at booking form. can someone tell me how to implement it ? i really do not know how to use it.help plz Link to comment https://forums.phpfreaks.com/topic/271141-a-noob-need-a-help/ Share on other sites More sharing options...
Andy123 Posted November 25, 2012 Share Posted November 25, 2012 Make a HTML file (e.g. index.html). Put the HTML in the <body> section. Put the Javascript in the <head> section, within <script type="text/javascript"> and </script> tags. Before the Javascript code, include the jQuery library, like this: <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> So, like this: <!DOCTYPE html> <html> <head> <title>Some Title</title> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript"> // Javascript code here! </script> </head> <body> The HTML here </body> </html> Link to comment https://forums.phpfreaks.com/topic/271141-a-noob-need-a-help/#findComment-1394947 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.