function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
giri rockzzzzgiri rockzzzz 

Query on jquery ????

the total sum is done for html input tags...how to do the same sum using <apex:inputText /> using jquery....

can anyone help me!!!!!!!!!!!

 

$(document).ready(
        function (){
    
            $("input[id^=sum]").sum("keyup", "#totalSum");
        }
    );