Forum: JavaScript / DHTML / AJAX Jul 9th, 2009 |
| Replies: 1 Views: 473 hello every one
sorry if my activity not very well at last few days
:icon_rolleyes:
I need function 2 remove spaces if more than one
and to merge lines into one line like this |
Forum: JavaScript / DHTML / AJAX Feb 18th, 2009 |
| Replies: 5 Views: 986 then it gives me :
ajaxobj.get is not a function |
Forum: JavaScript / DHTML / AJAX Feb 18th, 2009 |
| Replies: 5 Views: 986 :) :( :'(
look i include a js file having this function
XMLHttp = function() {
self = this;
if (typeof XMLHttpRequest != 'undefined')
return new XMLHttpRequest();
else if... |
Forum: JavaScript / DHTML / AJAX Feb 17th, 2009 |
| Replies: 5 Views: 986 XMLHttp.prototype.get = function(url) {
self.open("GET", url, true)
self.onreadystatechange = function() {
self.processRequest();}
self.send(null);}
thanks for trying 2 help
yes i... |
Forum: JavaScript / DHTML / AJAX Feb 16th, 2009 |
| Replies: 5 Views: 986 welcome every body
this is my first post
when i tried this code to accept multiple requests in ajax
http://javascript.about.com/library/blajax13.htm
it gives me error "get is not a function"... |