Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- window.addEvent('domready',function(){
- document.id('ajax').addEvent('click',function(){
- var username = $('#name').val();
- var password = $('#pass').val();
- ajaxFace = new LightFace.Request({
- url: 'http://www.berthojoris.com/dev/jqm/ajax.php',
- width: 220,
- height: 40,
- draggable: true,
- fadeDuration: 500,
- request: {
- data: {
- name: username,
- pass: password
- },
- },
- title: 'Notification'}).addButton('Close', function() { this.close(); },'blue')
- .open();
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment