Revised HTTPRequest for AJAX stuff





ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

« Previous 1 2 3 4 5 6 7 8 9  ...  13 14 Next »
2
Date Submitted Thu. May. 20th, 2010 1:49 AM
Revision 1
Scripter Cloudgen
Tags compiling | JavaScript | Jsc | Rhino
Comments 0 comments
If you are using Rhino, to compile a JavaScript file into java byte code invoke the following class

org.mozilla.javascript.tools.jsc.Main

In most of the time, if we want to compile the JavaScript file, we should start a Rhino session in order to invoke the org.mozilla.javascript.tools.jsc.Main class. This may be trivial if we have to compile a batch of files at a time. Thus, it's better if we can have a command instead of invoking a jar class file. To see how this can be done, please go to Compilation of Javascript File
0
Date Submitted Sat. Apr. 17th, 2010 5:21 AM
Revision 1
Beginner akino
Tags ajax
Comments 0 comments
source php to databasa and parsiing array database. why i am parsing this array to javascript?
2
Date Submitted Thu. Apr. 15th, 2010 4:16 AM
Revision 1
Scripter Cloudgen
Tags decimalized | JavaScript | obfuscating
Comments 0 comments
alert(99) --> (function(O,o){o(O(97,108,101,114,116,40,57,57,41))})(String.fromCharCode,eval)

This is the way we obfuscate our javascript. Detail explanation see http://www.wretch.cc/blog/cloudgen/26742560
1
Date Submitted Tue. Mar. 23rd, 2010 9:28 PM
Revision 1
Beginner hubertd
Tags C | CSharp | XML
Comments 0 comments
Quick way to construct XML string.
1
Date Submitted Wed. Mar. 3rd, 2010 10:37 AM
Revision 1
Beginner wizard04
Tags alert | console | debug | JavaScript | object | Popup | Window
Comments 0 comments
An object including a few helpful functions for debugging. Functions displaying popups or alerts are limited to a certain number of consecutive times before asking to continue, in case they end up being called in an endless loop or something.
1
Date Submitted Mon. Nov. 23rd, 2009 11:58 PM
Revision 1
Beginner nilambar
Tags Class | databse | Table | XML
Comments 0 comments
This is a simple class for generating XML from MySql databse table.

Usage
include("Xml.class.php");//include class file
$mx=new Xml;//create new Xml object
$mx->dbtoXml("localhost","root","","dbname","tblname");//give hostname, user, password, database name and table name
echo $mx->showXml();//showXml returns Xml
2
Date Submitted Thu. Aug. 20th, 2009 9:53 AM
Revision 1
Scripter Cloudgen
Tags classname | JavaScript | javascript-object
Comments 0 comments
To obtain the classname of every type of javascript object. See discussion
3
Date Submitted Tue. Jul. 14th, 2009 6:19 PM
Revision 1
Scripter Cloudgen
Tags Class | getter | JavaScript | property | setter
Comments 0 comments
This is the prototype for adding property getter and setter for any Javascript class. The construction and usage of the getter and setter methods allows the "chainability" of methods in one line. Detail discussion can be found inOne line properties setter and getter for Javascript class
3
Date Submitted Tue. Jul. 14th, 2009 4:34 AM
Revision 1
Scripter Cloudgen
Tags Class | JavaScript | query | String | URL
Comments 0 comments
This function is quite useful in accessing the query string, host, path and filename obtained from an url. See detailed discussion in A javascript class for retrieving query string
« Previous 1 2 3 4 5 6 7 8 9  ...  13 14 Next »