Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(function(){
- // Link handling.
- $('a[rel != "noAJAX"]').live('click', function(event){
- if ($(this).attr('name') != ""){
- var currentDiv = $(this).attr('name');
- }else{
- var currentDiv = divID;
- }
- $(currentDiv).html(loadingHTML);
- $(currentDiv).load($(this).attr('href'));
- event.preventDefault();
- });
- $('form[rel != "noAJAX"]').live('submit', function(event){
- if ($(this).attr('name') != ""){
- var currentDiv = $(this).attr('name');
- }else{
- var currentDiv = divID;
- }
- $(currentDiv).html(loadingHTML);
- $.post($(this).attr('action'), $(this).serialize(), function(html){
- $(currentDiv).html(html);
- });
- return false;
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement