You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a "nice to have" feature which is largely obsolete if the end developer uses the JSIncludes = false setting, so not important. I've not found a method of doing this which is 100% reliable.
Detect if jQuery or the jQuery validation plugin exists. Only load if they don't exist. Something like:
if (typeof jQuery=="undefined"){
document.write("<script....>");
}
if (typeof jQuery.plugins.validate=="undefined"){
document.write("<script....>");
}
The text was updated successfully, but these errors were encountered: