Posts

Showing posts with the label Ajax Post

Login With Google Plus Using Javascript

Login With Google Plus Using Javascript More information visit: https://developers.google.com/+/web/api/javascript <!-- Place this asynchronous JavaScript just before your </body> tag --- Google SignIn--> <script type="text/javascript">     (function() {            var po = document.createElement('script'); po.type = 'text/javascript';            po.async = true;            po.src = 'https://apis.google.com/js/client.js?onload=onLoadCallback';            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);          })(); </script> <script type="text/javascript"> $(document).ready(function(e) {            var po = doc...

Login with Linkedin Using Javascript

Login with Linkedin Using Javascript For more information visit: http://developers.linkedin.com/documents/getting-started-javascript-api <!--Script for LinkedIn Login add in head --> <script type="text/javascript" src="https://platform.linkedin.com/in.js">       api_key: 75dtnfjj******       authorize: true       lang:  en_US </script> <script type="text/javascript"> // JavaScript Document function signupLinkedIn() {     IN.User.authorize(onLinkedInAuth);     if(IN.User.isAuthorized())     {         //DO STUFF         //console.log('welcome');     }     return false; }; function onLinkedInAuth() {    // we pass field selectors as a single parameter (array of strings)    IN.API.Profile("me")     .fields(["...

Login with Facebook Using Javascript

Login with Facebook using Javascript. For more information visit : https://developers.facebook.com/products/login/ <script> window.fbAsyncInit = function() {   FB.init({     appId      : '*************427',     cookie     : true,  // enable cookies to allow the server to access                         // the session     xfbml      : true,  // parse social plugins on this page     version    : 'v2.0' // use version 2.0   }); }; // Load the SDK asynchronously (function(d, s, id) {     var js, fjs = d.getElementsByTagName(s)[0];     if (d.getElementById(id)) return;     js = d.createElement(s); js.id = id;     js.src = "//connect...

Upload file on select browse file event

Image
This is the example to show browse button on image on mouse over and remove then on mouse leave using css and javascript and upload file on select browse file event using Coldfusion,CSS and Jquery. After mouse over shows browse image button.

Auto fill textbox using jquery in php

Auto fill textbox using jquery in php. Y ou allow the user to type in a value into a Textbox and fetch values from database according that keyword.

Auto fill textbox using jquery in Coldfusion

Auto fill textbox using jquery in Coldfusion . Y ou allow the user to type in a value into a Textbox and fetch values from database according that keyword.

Post data by ajax using coldfusion component

Image
In this example, we are using AJAX to handle the form submission with form validations, That's insert data into database table. Output : - On click Submit button: That form post the values on update.cfc file. On Successfully Submit data Screen : I hope this is useful for new coldfusion programmers. Thank You