GETTING STARTED
BUILDING WITH JQUERY

When developing web-browser based applications, one of the greatest developments in recent times is the jQuery framework, with its "write less, do more" philosophy it radically changes the web application development environment.

The mydigitalstructure framework has been specifically designed to work with jQuery and its associated frameworks ie jQuery UI, jQuery Plugins, jQuery UI Themeroller, jQuery Mobile.

Building rich and engaging MVC/AJAX based applications, goes from a very painful to highly rewarding experience.

A great way to get started is to look at the app.1blankspace.com jQuery based implementation.  Once signed up and logged on you can view the source, or if don't want to sign up just go to https://app.1blankspace.com and view the source or clone it from github.

 

 

SEE ALSO

 

 

USEFUL PLUGINS

 
 

HOSTED JQUERYUI THEMES

The follow themes are hosted on the mydigitalstructure.com platform.

  • /jscripts/jqueryui/ui-lightness.css
  • /jscripts/jqueryui/ui-darkness.css
  • /jscripts/jqueryui/dark-hive.css
  • /jscripts/jqueryui/pepper-grinder.css
  • /jscripts/jqueryui/start.css

Themes are compliant with:

  • /jscripts/jqueryui/jquery-ui-1.8.20.min.js
  • /jscripts/jquery-1.7.2.min.js

Of course you can make your own themes and directly attach them to your website/app.

 
 

SNIPPETTS

Posting as JSON:

$.ajax(
{
type: "POST",
url: "/rpc/project/",
data: JSON.stringify({"method": "project_team_manage", "id" : "111", "description" : "fred"}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data){alert(data);},
failure: function(errMsg) {alert(errMsg);}
});