- ID de exploración:
- 28f5a6ef-a31c-4925-82df-0f5932d767ceFinalizado
- URL enviada:
- https://msg.care/8nfhKRedireccionado
- Informe finalizado:
Enlaces: 0 encontrados
Los enlaces salientes identificados en la página
Variables JavaScript: 33 encontradas
Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual
Nombre | Tipo |
---|---|
0 | object |
1 | object |
2 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
notConsentedButTriedToLoad | object |
OptanonWrapper | function |
$ | function |
jQuery | function |
Mensajes de registro de la consola: 5 encontrados
Mensajes registrados en la consola web
Tipo | Categoría | Registrar |
---|---|---|
warning | other |
|
log | other |
|
warning | other |
|
log | other |
|
warning | other |
|
HTML
El cuerpo HTML sin procesar de la página
<!DOCTYPE html><html lang="en"><head>
<script src="" data-document-language="true" type="text/javascript" charset="UTF-8" data-domain-script="63b291cb-5c88-4a9c-998a-b73fe0da2552"></script>
<script type="text/javascript">
// store the original cookie setter and getter
document.cookieSetter = Object.getOwnPropertyDescriptor(Document.prototype, 'cookie').set;
document.cookieGetter = Object.getOwnPropertyDescriptor(Document.prototype, 'cookie').get;
// each item in this array is in the format [cookie, group]
var notConsentedButTriedToLoad = [];
function OptanonWrapper() {
var onetrustData = OneTrust.GetDomainData();
var consentedGroups = OptanonActiveGroups;
var cookies = {};
// create one object full of all of the cookies in the config for easy for quick lookups
onetrustData.Groups.forEach(function (group) {
group.Cookies.forEach(function (cookie) {
cookies[cookie.Name] = {group: group.OptanonGroupId};
});
});
// override the cookie setter with our new function
document.__defineSetter__("cookie", setCookie);
document.__defineGetter__("cookie", document.cookieGetter);
function setCookie(cookie) {
if (!cookie) return;
var cookieArr = cookie.split("=");
if (!cookieArr.length) return;
var cookieName = cookieArr[0];
// Don't set cookies that dont exist in the OneTrust config
if (!cookies[cookieName]) {
return;
}
// get the group this cookie belongs to
var cookieGroup = cookies[cookieName].group;
// Don't set cookies that don't have User consent
// but let it set the cookie if we know it's required
// but store the value so we can set them if Onetrust consent changes
if (consentedGroups.indexOf(cookieGroup) === -1) {
notConsentedButTriedToLoad.push([cookie, cookieGroup]);
return;
}
// set the cookie using the original javascript cookie setter
document.cookieSetter(cookie);
}
// When the user changes their consent, we should set the cookies that were previously blocked
OneTrust.OnConsentChanged(function (e) {
var newConsentedGroups = e.detail;
notConsentedButTriedToLoad.forEach(function (cookieDetails) {
var cookie = cookieDetails[0];
var cookieGroup = cookieDetails[1];
// cookie is in the new list of consented groups, so we can set it now
if (newConsentedGroups.indexOf(cookieGroup) > -1) {
document.cookieSetter(cookie);
}
})
})
}
</script>
<title>[SURVEY PREVIEW MODE] CRCHC Transportation Survey
</title>
<meta charset="utf-8">
<meta name="robots" content="noindex, nofollow">
<meta name="viewport" content="width=device-width, height=device-height, max-scale=1.0, initial-scale=1.0, user-scalable=yes">
<meta http-equiv="content-language" content="en"><!--[if lt IE 9]>
<script src="https://prod.smassets.net/assets/responseweb/smlib.ui-html5-bundle-min.bbd1e809.js"
></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="https://prod.smassets.net/assets/responseweb/responseweb-base-bundle-min.2d09d544.css">
<link type="text/css" rel="stylesheet" href="https://prod.smassets.net/assets/responseweb/responseweb-preview-bundle-min.0b05a010.css"><link type="text/css" rel="stylesheet" href="https://prod.smassets.net/assets/responseweb/responseweb-commenting-bundle-min.2851d551.css">
<link type="text/css" rel="stylesheet" href="https://prod.smassets.net/assets/responseweb/responseweb-commenting_dialog-bundle-min.fd760d40.css">
<link rel="shortcut icon" href="/favicon1.ico">
<script src="https://prod.smassets.net/assets/responseweb/responseweb-jquery-bundle-min.a17eeae3.js"></script>
<style type="text/css">.mentions-suggestions__loading-text{margin:8px auto;font-family:'National2, "Helvetica Neue", Helvetica, Arial, sans-serif';word-wrap:break-word}.mentions-suggestions__loading-container{margin:0;all:initial}.mentions-suggestions__sm-spin{margin:4px auto!important;padding:4px!important;z-index:999;position:relative;box-sizing:border-box;border-radius:100%;border:8px solid #d0d2d3;border-top-color:#00bf6f;min-width:20;-webkit-animation:sm-spin 1s infinite linear;-moz-animation:sm-spin 1s infinite linear;-ms-animation:sm-spin 1s infinite linear;animation:sm-spin 1s infinite linear}.mentions-suggestions__sm-spin:after,.mentions-suggestions__sm-spin:before{content:"";position:absolute;background:#00bf6f;border-radius:50%}.mentions-suggestions__sm-spin.spin-tiny{height:16px;width:16px;border-width:3px}.mentions-suggestions__sm-spin.spin-tiny:after,.mentions-suggestions__sm-spin.spin-tiny:before{display:none}.mentions-suggestions__sm-spin.spin-small{height:32px;width:32px;border-width:5px}.mentions-suggestions__sm-spin.spin-small:after,.mentions-suggestions__sm-spin.spin-small:before{width:5px;height:5px;top:-2px}.mentions-suggestions__sm-spin.spin-small:before{left:0}.mentions-suggestions__sm-spin.spin-small:after{right:0}.mentions-suggestions__sm-spin.spin-medium{height:64px;width:64px;border-width:8px}.mentions-suggestions__sm-spin.spin-medium:after,.mentions-suggestions__sm-spin.spin-medium:before{width:8px;height:8px;top:0}.mentions-suggestions__sm-spin.spin-medium:before{left:1px}.mentions-suggestions__sm-spin.spin-medium:after{right:1px}.mentions-suggestions__sm-spin.spin-large{height:128px;width:128px;border-width:10px}@-webkit-keyframes sm-spin{0%{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(1turn)}}@-moz-keyframes sm-spin{0%{-moz-transform:rotate(0)}to{-moz-transform:rotate(1turn)}}@-ms-keyframes sm-spin{0%{-ms-transform:rotate(0)}to{-ms-transform:rotate(1turn)}}</style><style type="text/css">.mentions-suggestions__socialMarkupInput{margin:0!important;all:initial!important;line-height:normal!important}</style><style type="text/css" nonce="" media="print">.usabilla_live_button_container { display: none; }</style><style type="text/css" nonce="">iframe.usabilla-live-button#usabilla_live_button_container_iframe257147020{width:39px;height:130px;margin: 0;padding: 0;border: 0;overflow: hidden;z-index: 9998;position: absolute;left: 0;top: 0;box-shadow: 0 0 0;background-color: transparent;}</style></head>
<body class="translate desktop no-overflow" id="preview-body"><div id="lightningjs-usabilla_live" style="display: none;"><div><iframe frameborder="0" id="lightningjs-frame-usabilla_live"></iframe></div></div>
<header id="preview-header">
<div class="commenting-tools flat-ui" style="float: right; margin: 8px;">
<div class="comment-heading-button comment-mode-toggle"><a data-reactroot="" class="btn gray-dark-flat btn-large" data-comments-header-tool="mode-toggle"><span class="smf-icon">w</span></a></div>
</div>
<h1>
<a href="https://www.surveymonkey.com" target="_blank">
<img src="https://prod.smassets.net/assets/responseweb/responseweb/1.0.0/assets/images/surveymonkey-logo-sabaeus.svg" alt="SurveyMonkey">
</a>
</h1>
<h2>Preview & Test</h2>
</header>
<header id="preview-secondary-header">
<h2>Preview & Test</h2>
</header>
<div id="preview-container" class="desktop">
<div id="preview-container-inner">
<div id="preview-camera"></div>
<div id="preview-iframe-wrap">
<iframe src="/r/?sm=9Zf77mbNojxk_2B5O1gZ1YhNak79RWB5N1_2Bzs6hY2qbP4_3D&embedded=true" id="survey-preview"></iframe>
</div>
<div id="preview-home"></div>
</div>
</div>
<div class="comments">
</div>
<footer id="preview-footer" style="top: 554px; bottom: auto;">
<ul id="device-sizes">
<li><a data-size="desktop" href="#" class="active desktop" style="display: block;">DESKTOP</a></li>
<li><a data-size="tablet" href="#" class="tablet" style="display: none;">TABLET</a></li>
<li><a data-size="phone" href="#" class="phone" style="display: block;">PHONE</a></li>
</ul>
<div class="buttons">
<a id="requestSurveyShareAccess" class="btn teal hidden">
Request Access
</a>
</div>
</footer>
<section class="aboutPreview">
<div class="aboutHeader">
<span class="smf-icon">D</span>
<span class="text">Survey Preview</span>
</div>
<div class="aboutBody">
<p>This survey preview allows you to see what respondents will see when they take the survey, however, <strong>no data will be collected or recorded</strong>. Your survey respondents won’t be able to add comments to this survey or view any existing comments.</p>
<div class="aboutPreviewOptions">
<h2>Click <span class="smf-icon aboutHide">w</span> to hide comments and preview exactly what respondents will see.</h2>
</div>
<div>
<label id="hidePreviewLabel">
<input id="hidePreviewWarning" type="checkbox"><span class="box"></span>
<span class="text">Don't show this notice again.</span>
</label>
</div>
</div>
</section>
<div class="hide" data-type="emailContent">
<div id="sendFeedbackText">
<div data-content="subject">
Survey Design Feedback : <span class="notranslate">CRCHC Transportation Survey</span>
</div>
<div data-content="body">
I just checked out the preview of your survey and wanted to give you some notes:
https://www.surveymonkey.com/r/Preview/?sm=9Zf77mbNojxk_2B5O1gZ1YhIC_2FfU7DffEoiYIfwlmb8sTZ1jq9plF_2B_2FHtszqfAqV69
</div>
</div>
<div id="getFeedbackText">
<div data-content="subject">
Need your help with my survey
</div>
<div data-content="body">
This is a test version of CRCHC Transportation Survey, a survey I designed using SurveyMonkey:
https://www.surveymonkey.com/r/Preview/?sm=sCE_2FP2DkrYLuIjmmEnrpmRvt9OqGuIeYVjhOwGeOFA6K2iLtGBAeQKMm_2FLoVAhHYvrzpj_2FCvYFlbAXpbDRnPHw_3D_3D
I've sent you this test version so you can preview the survey.
</div>
</div>
</div>
<p id="hcmtest" class="screen-reader-text high-contrast-test">T</p>
<noscript><style type="text/css" media="all">form {display:none;} </style><div style="text-align:center;">Javascript is required for this site to function, please enable.</div></noscript>
<script src="https://prod.smassets.net/assets/responseweb/responseweb-preview-bundle-min.b8ebf85b.js"></script>
<script type="text/javascript">
window.SM_USER_ID = "1";
window.SM_LOCALE = "en";
window.SM_IS_OWNER = false;
window.SM_SURVEY_ID = "516482477";
window.SM_DC_ID = "0";
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.7/es5-shim.min.js" integrity="sha384-cd4lUVQHbrUvWMwHe/DRxHYYf4+4eh+YifAIHe6sbK4SzZS2jdKvxhTn3aeoYTH/" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.35.1/es6-shim.min.js" integrity="sha384-9/B/swWhqFublQV/D2Tt5g9z2ks64ZRnj6WG8qRLKkGATs8P9+GHwXpa39vTRSEr" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react.min.js" integrity="sha384-GjSRThJn3fjCmKim4Jou04Ax7vvKfk76xSCKUo7/V70VNIlidvZd3ZnT9rtJk0KM" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react-dom.min.js" integrity="sha384-3AR/0xGUlR37VpbeHbKQhvizC4T8sNTU8t5GS9JC/4odeRePZuPYl5Pyv/zTeSd8" crossorigin="anonymous"></script>
<script src="https://prod.smassets.net/assets/responseweb/smlib.comments-comments-bundle-min.d4127a07.js"></script>
<div id="commenting-tooltips" data-visible="0">
<h5 class="invite-others">Invite others to add a comment</h5>
<h5 class="read-new">You have a new comment</h5>
<h5 class="add-comment">Add a comment</h5>
<h5 class="read-comments">Read comment</h5>
<h5 class="hide-comments">Hide comments</h5>
<h5 class="commenting-off">You've turned commenting off</h5>
<p class="commenting-off">Existing comments can still be seen, but you can't add new comments or reply to existing ones.</p>
<span class="tip"></span>
<a class="close">
<span aria-hidden="true"></span>
Close
</a>
</div>
<!-- begin usabilla live embed code -->
<script type="text/javascript">/*{literal}<![CDATA[*/window.lightningjs||function(c){function g(b,d){d&&(d+=(/\?/.test(d)?"&":"?")+"lv=1");c[b]||function(){var i=window,h=document,j=b,g=h.location.protocol,l="load",k=0;(function(){function b(){a.P(l);a.w=1;c[j]("_load")}c[j]=function(){function m(){m.id=e;return c[j].apply(m,arguments)}var b,e=++k;b=this&&this!=i?this.id||0:0;(a.s=a.s||[]).push([e,b,arguments]);m.then=function(b,c,h){var d=a.fh[e]=a.fh[e]||[],j=a.eh[e]=a.eh[e]||[],f=a.ph[e]=a.ph[e]||[];b&&d.push(b);c&&j.push(c);h&&f.push(h);return m};return m};var a=c[j]._={};a.fh={};a.eh={};a.ph={};a.l=d?d.replace(/^\/\//,(g=="https:"?g:"http:")+"//"):d;a.p={0:+new Date};a.P=function(b){a.p[b]=new Date-a.p[0]};a.w&&b();i.addEventListener?i.addEventListener(l,b,!1):i.attachEvent("on"+l,b);var q=function(){function b(){return["<head></head><",c,' onload="var d=',n,";d.getElementsByTagName('head')[0].",d,"(d.",g,"('script')).",i,"='",a.l,"'\"></",c,">"].join("")}var c="body",e=h[c];if(!e)return setTimeout(q,100);a.P(1);var d="appendChild",g="createElement",i="src",k=h[g]("div"),l=k[d](h[g]("div")),f=h[g]("iframe"),n="document",p;k.style.display="none";e.insertBefore(k,e.firstChild).id=o+"-"+j;f.frameBorder="0";f.id=o+"-frame-"+j;/MSIE[ ]+6/.test(navigator.userAgent)&&(f[i]="javascript:false");f.allowTransparency="true";l[d](f);try{f.contentWindow[n].open()}catch(s){a.domain=h.domain,p="javascript:var d="+n+".open();d.domain='"+h.domain+"';",f[i]=p+"void(0);"}try{var r=f.contentWindow[n];r.write(b());r.close()}catch(t){f[i]=p+'d.write("'+b().replace(/"/g,String.fromCharCode(92)+'"')+'");d.close();'}a.P(2)};a.l&&setTimeout(q,0)})()}();c[b].lv="1";return c[b]}var o="lightningjs",k=window[o]=g(o);k.require=g;k.modules=c}({});
window.usabilla_live = lightningjs.require("usabilla_live", "//w.usabilla.com/fc0add5102b5.js"); /*]]>{/literal}*/</script>
<!-- end usabilla live embed code -->
<script>
document.domain = 'surveymonkey.com';
SPAGE.Logger.init({"path": "/r/log/", "enabled": true, "batchSize": 10, "batchInterval": 5000});
SPAGE.Preview.init({"mode": "sender", "commenting": {"commenting_enabled": true, "user_can_comment": false, "params": "MY4nksjpKj6napnuKQ4r3Xspp9h_2FgGv00iocp6ryUrkSjabWEiic2JTn7pZPnvLl", "enable_microsoft_integration": false, "allow_social_markup": false, "sm_user_email": "", "linked_microsoft_email_address": null, "configPaths": {"permissions": "/r/Preview/permissions/{search}&c={uuid}", "invites": "/r/Preview/invite/{search}&c={uuid}"}, "invite_state": null, "request_access_url": "/r/Preview/share/?sm=CxAZs5ci6MzFeDlpfKX90e3FbnLqlVmOG38YfU9XGNI_3D", "intent_fetch_url": "/apis/v3/internal/intents?sm=Rp2bFnhWeJpqMqGqpP_2B8lkQylwGAcKT_2B4ZGoJ1Xrh5blebzs5lyvwIu9JKrvYIPT_2Fp0YFR7CrgR2VbZMzabLAw_3D_3D", "default_comment_pane_open": false, "unblock_domain_help_link": "https://help.surveymonkey.com/articles/en/kb/What-are-the-IP-addresses-to-your-website-for-our-firewall-configurations", "is_invite_dialog_experiment": false}});
if (window['Comments']) {
Comments.initalizeTranslations({"account_owner": {"default": "Primary Admin"}, "admin": {"default": "Admin"}, "banner_header": {"default": "Ready to get feedback?"}, "banner_invite": {"default": "Invite others to comment on your survey questions."}, "cancel": {"default": "CANCEL"}, "close": {"default": "CLOSE"}, "comment": {"default": "COMMENT"}, "comment_deleted": {"default": "Comment Deleted"}, "commenting_disabled": {"default": "Commenting is disabled"}, "commenting_off": {"default": "Commenting is off"}, "commenting_on": {"default": "Commenting is on"}, "comments_on": {"default": "Comments on {0}"}, "copy": {"default": "COPY"}, "copy_paste_the_link": {"default": "Copy and paste the link"}, "custom_invite": {"default": "Optional: write a message"}, "delete": {"default": "Delete"}, "edit": {"default": "Edit"}, "edited": {"default": "Edited"}, "email_link": {"default": "Send preview by email"}, "email_user": {"default": "New Email"}, "enter_names_email": {"default": "Enter names or email addresses"}, "error_character_invite_message_limit": {"default": "Character limit of 250 reached"}, "error_character_limit": {"default": "Character limit of 1000 reached"}, "error_comments": {"default": "Oh no, looks like your comment didn't post. Let's try again."}, "error_fetch_comments": {"default": "Oh no, we couldn't display comments for this survey. Let's try again."}, "error_fetch_intent": {"default": "Error occurred while getting applications"}, "error_fetch_participants": {"default": "Oh no, we couldn't get a list of people to invite. Let's try again."}, "error_invite_limit": {"default": "Exceeds limit of available invites."}, "error_logged_out": {"default": "Oh no, something went wrong and you were unexpectedly logged out. Refresh the page to log back in."}, "error_max_comments": {"default": "You can't post more than 100 comments in a survey."}, "error_oops": {"default": "Oh no, looks like commenting mode isn't working properly. Let's try again."}, "error_send": {"default": "Oh no, looks like your invitations didn't send. Let's try again."}, "intent_share_result": {"default": "Share preview to:"}, "invalid_names": {"default": "One or more of the names or emails are not recognizable."}, "invite": {"default": "INVITE"}, "invite_all": {"default": "Invite all team members"}, "invite_limit_warning": {"default": "You can only invite up to 10 people at a time."}, "invite_list_empty": {"default": "You haven't added an email address so we can't send an invite."}, "invite_modal_title": {"default": "Share a preview and get feedback"}, "invite_modal_message": {"default": "Anyone with this link can preview your survey. Anyone with a login can leave comments."}, "invite_modal_message_restricted_permission": {"default": "Anyone with this link can preview your survey."}, "invite_notice": {"default": "Invitees can share this preview link with others. Anyone with this link can comment on your survey (sign-in required)"}, "invite_others": {"default": "Invite others to comment"}, "link_copied_to_clipboard": {"default": "Link copied to clipboard"}, "link_not_copied_to_clipboard": {"default": "Link not copied to clipboard"}, "load_reply": {"default": "Number of replies: {0}"}, "loading_results": {"default": "Loading..."}, "mention_placeholder": {"default": "Comment or invite someone using @mentions..."}, "new_feature": {"default": "New Feature"}, "new_feature_info": {"default": "Try using @ symbol to invite a team member to comment (example: @lindsay)."}, "office365_user": {"default": "Office365 User"}, "or_copy_paste_the_link": {"default": "Or copy and paste the link"}, "post": {"default": "POST"}, "preview_only_message": {"default": "This link is for preview only and won\u2019t record responses."}, "reply": {"default": "Reply"}, "reply_button": {"default": "REPLY"}, "reply_deleted": {"default": "Reply Deleted"}, "resolved": {"default": "Resolved"}, "save": {"default": "SAVE"}, "send": {"default": "SEND"}, "sending_invite": {"default": "Sending invite"}, "suggested_commentors": {"default": "Suggested Commentors"}, "surveymonkey_user": {"default": "Surveymonkey User"}, "team_member_invite_to_empty_seats_exp": {"default": "You have {0} open team seats. Invite people so you can work together on shared surveys."}, "unblock_emails_help_center_link_text": {"default": "If emails aren\u2019t going through, try allowing our <a target='_blank' href={0} rel='noopener noreferrer'>domains and IPs.</a>"}, "unresolved": {"default": "Unresolved"}, "user": {"default": "User"}, "write_comment": {"default": "Write comment..."}, "write_reply": {"default": "Write reply..."}, "x_members": {"default": "Number of members: {0}"}});
}
</script>
<div id="errorNotification" class="notification error below">
<div class="smf-icon">!</div>
<h3>Error</h3>
<h3><span class="text"></span></h3></div><div id="copyNotification" class="notification loading above">
<div class="smf-icon copyIcon">Ç</div>
<h3><span class="text"></span></h3></div><div id="copyErrorNotification" class="notification error above">
<div class="smf-icon">!</div>
<h3>Error: <span class="text"></span></h3></div><div id="notification" class="notification loading below">
<div class="smf-icon cogspin">y</div>
<h3></h3>
</div><div id="reqAccessSuccessNotification" class="notification below">
<div class="smf-icon">2</div>
<h3><div class="text">
Hold tight, we've sent the survey owner an email with your request.
</div></h3>
</div><div id="reqAccessErrorNotification" class="notification error below">
<div class="smf-icon">!</div>
<h3>Error</h3>
<h3><div class="text">
Oh no, looks like your request didn't go through. Please try again.
</div></h3>
</div><div></div><div></div><div class="usabilla_live_button_container" id="usabilla_live_button_container_741212928" role="button" tabindex="0" aria-label="Usabilla Feedback Button" style="display: none;"><style type="text/css" nonce="">div.usabilla_live_button_container#usabilla_live_button_container_741212928[role="button"] {right:0px;top:50%;margin-top:-65px;position:fixed;width:39px;height:130px;z-index:999}</style><iframe src="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" data-tags="right" title="Usabilla Feedback Button" class="usabilla-live-button" id="usabilla_live_button_container_iframe257147020"></iframe></div></body></html>