ajaxLink fall back with JS disabled

I rely heavily on ajaxLink and ajaxSubmitButton and I noticed that they are just disabled when JavaScript is disabled, if possible I would like it so they just fall back to a regular link/button pointing to their otherwise AJAX controller which will then use render rather than renderPartial. How would I go about doing this?

Okay, turns out I worked out the ajaxLink part of things, I just did this which worked a treat:




echo CHtml::ajaxLink($label, $item['url'], array('update'=>'#pagebody'), array('href'=>$link));



Where $link is the path to the controller.