You are viewing limited content. For full access, please sign in.

Question

Question

Forms logo href

asked on August 1, 2016

Hi,

I am trying to make my Forms logo that i uploaded to be clickable but haven't had any success so far. 

I have tried

$(".cf-formtitle").attr("href", "http://www.w3schools.com/jquery");

and

$("#form-logo").attr("href", "http://www.w3schools.com/jquery");

I think i need some sort of anchor but can't figure out how to include that.

Any help is greatly appreciated.

0 0

Answer

SELECTED ANSWER
replied on August 1, 2016 Show version history

You can use Javascript like

$(document).ready(function () { 
  $("#form-logo").wrap("<a href='http://www.w3schools.com/jquery' target='_blank'></a>");
});
1 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.