All topics
 
member picmember pic
 
Snippets by author: A
 
Overall visits to all the topics: 5,067,543
Daily average (Calculated from the website subscription day): 2,078.566
Optional sorting commands:
Order by amount of visits: click here
Order by vote (attention: this may exclude from the returned results all the entries that have no votes): click here
Normal order: click here
Current order: by category: Programming Ajax
Other categories available for this author (Limited data report: 100):
Advice: Martial Arts and Self Defense(4), Books(236), Boxing(2), Critical Reviews and Essays(4), Dictionaries(1), Emergency Care(4), Epistles Letters and Advice(5), Fantasy Epics and Fables(1), History and Documents(5), Humor and Jokes(2), Methematics(2), Music and Lyrics(6), News Digests and Press Reviews(1), Novels Poetry and Stories(3), Philosophy Reviews(7), Poetry(1), Programming(4), Programming Ajax(2), Programming Javascript(82), Programming Php(52), Psychology(1), Quotes(1), Religion Esoterica and Spirituality(13), Scientifical Reviews(4), Self Improvement(1), Sport Activities and Apparels(1), Tarots(1)
Showing topics: 1, 10
Available total: 450
This subscriber has a blog too: Read the blog. Shoutbox: 103 reviews: 153
 
Javascript Ajax: Simple Copy & Paste Ajax Post Get Implementation For Beginners Identification Number: 420 http://en.wikipedia.org/wiki/File:Miniaturk_009.jpg Preview: OBJECTIVE : given the many times we see a wrong ajax implemented by beginners, provide a simple but working ajax implementation.   Yet it is assumed it is known what ajax is at least.function ajaxFunction(url, myfunction, post) //1.0.1   var anAjaxRequest=null;   var workaround='x'+'m'+'l';/*for copy & paste purposes: some servers are wary of x m l strings*/   tryanAjaxRequest=new window workaround.toUpperCase()+'HttpRequest' (); catch(e)   tryanAjaxRequest=new ActiveXObject("Ms"+workaround+"2."+workaround.toUpperCase()+"HTTP"); catch(e)   tryanAjaxRequest=new ActiveXObject("Microsoft."+workaround.toUpperCase()+"HTTP"); catch(e)   alert("Ajax not supported");   return null;         anAjaxRequest.onreadystatechange=function()   if( (anAjaxRequest.readyState==4 anAjaxRequest.readyState=='complete') && (anAjaxRequest.status==200 anAjaxRequest.status==100))   return (myfunction)?myfunctio... read more: click here Visitors: 11,631 Tagged by its author as: Programming Ajax This author also has a Blog Ajax Class Script: Javascript Closures For Totally Encapsulated Multi Ajax Class Identification Number: 23 http://en.wikipedia.org/wiki/File:Miniaturk_009.jpg Preview: OBJECTIVE : create an Ajax class that would not rely on any external dependency, namely entirely encapsulated in itself without meddling with any outer scope or with the javascript prototype and with no additional subroutines to help build the Ajax instance, and not even echo handlers as additional globally defined functions.   This documentation, meant to be a core, presumes you already know what Ajax is and you are cognizant of the existence of Javascript Closures (also dubbed "currying") as a Javascript coding technique, although somewhat exotic or just not too widely used.   Be sure to read the caveats section on bottom before copying or using the code.     function Ajax(echoFunction, responseType)//version 1.1.0   this.request=null;   this.response=null;   this.callingMethod='';   this.responseType=(typeof(responseType)=='string' && ... read more: click here Visitors: 13,688 Tagged by its author as: Programming Ajax This author also has a Blog