﻿// A set of utility functions for use throughout the wva website

//Serialzes the asp .net form [needs to be asp .net controls] excluding viewsate information.
$.fn.serializeNoViewState = function()
{
    return this.find("input,textarea,select,hidden")
               .not("[type=hidden][name^=__]")
               .serialize();    
}



