- if (dojo.byId('viewLink')) {
- dojo.connect(dojo.byId('viewLink'), 'onclick', function(event) {
- dojo.xhrGet({
- url: event.target.href,
- handleAs: 'text',
- timeout: 10000,
- load: function(data){
- console.log('success');
- },
- error: function(){
- console.log('error');
- }
- });
- dojo.stopEvent(event);
- });
- }