Our Mission: The mission of Quad City Area REALTORS® is to serve its membership in developing and promoting programs and services that will enhance the members’ freedom and ability to conduct their individual businesses successfully with integrity and competency, through collective action to promote the preservation of real property rights.
').insertAfter(".dmSocialLinkedin");
$("input").each(function(){
if (!$(this).attr("aria-label") && $(this).attr("placeholder")) {
$(this).attr("aria-label", $(this).attr("placeholder"));
}
else if (!$(this).attr("aria-label") && $(this).attr("name") && $('label[for="' + $(this).attr("name") + '"]').text() != "") {
$(this).attr("aria-label", $('label[for="' + $(this).attr("name") + '"]').text());
}
else if (!$(this).attr("aria-label") && $(this).attr("value")) {
$(this).attr("aria-label", $(this).attr("value"));
}
});
$("textarea").each(function(){
if (!$(this).attr("aria-label") && $(this).attr("placeholder")) {
$(this).attr("aria-label", $(this).attr("placeholder"));
}
else if (!$(this).attr("aria-label") && $(this).attr("name") && $('label[for="' + $(this).attr("name") + '"]')) {
$(this).attr("aria-label", $('label[for="' + $(this).attr("name") + '"]').text());
}
});
$("iframe").each(function(){
if ($(this).attr("src").includes("youtube") || $(this).attr("src").includes("vimeo")) {
$(this).attr("title", "Embedded video");
}
});
$("img").each(function(){
if (!$(this).attr("alt")) {
$(this).attr("alt", "Embedded image");
}
});
$("font").replaceWith( //find all font tags and call replace with to change the element
function(){
var tag = $(this);
return $("") //create new span
.html(tag.html()) //set html of the new span with what was in font tag
.attr("style", tag.attr("style"))
//.css("color", tag.attr("color")); //set the css color with the attribute
}
);
});
$(window).on('load', function(){
$("font").replaceWith( //find all font tags and call replace with to change the element
function(){
var tag = $(this);
return $("") //create new span
.html(tag.html()) //set html of the new span with what was in font tag
.attr("style", tag.attr("style"))
//.css("color", tag.attr("color")); //set the css color with the attribute
}
);
$(".readMore").children("a").each(function(){
if (!$(this).html()) {
$(this).html("Read More →")
}
});
$("font").replaceWith( //find all font tags and call replace with to change the element
function(){
var tag = $(this);
return $("") //create new span
.html(tag.html()) //set html of the new span with what was in font tag
.attr("style", tag.attr("style"))
//.css("color", tag.attr("color")); //set the css color with the attribute
}
);
});