x
x
x
x
Only portrait mode is currently supported - please rotate your device.
...
HTML |
---|
<style>
div.largeimagewithtextbelow-autocards .card-title {
padding: 0;
font-family: var(--secondary-font-family);
font-size: 20px;
}
</style>
<script>
function setCardLinks() {
let cardLinks = Array.from($("#myCards-userlist").find("a"));
cardLinks.forEach(a => {
let companyName = a.href.split('companies/')[1];
let newLink = '/display/MSCOM/Company+Page?company=' + companyName;
a.href = newLink;
});
}
window.addEventListener("DOMContentLoaded", () => {
setCardLinks();
/*
$('#myForm-tdmcompanies input').click(function() {
setCardLinks();
});
*/
});
</script> |
...
OneValley