Two JQuery API's in ASP.Net

MoiraesFate

New Member
I have two API's of JQuery in ASP.Net, This is for the message boxAnd this is for the progress barWhat should I do to avoid conflict between the two of them? because if I declare the source of API so the progress bar will work, then the message box will not work.this is the source for message box\[code\] <script src="http://stackoverflow.com/questions/14554189/<%# Page.ResolveUrl("~/Style/javascript/jquery-1.7.1.js")%>" type="text/javascript"></script> <script src="http://stackoverflow.com/questions/14554189/<%# Page.ResolveUrl("~/Style/javascript/jquery.toastmessage.js")%>" type="text/javascript"></script>\[/code\]And this is the source for Progress Bar\[code\]<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js" type="text/javascript"></script><script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js" type="text/javascript"></script>\[/code\]
 
Back
Top