cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Who Me Too'd this topic

Customizing response page

L0 Member

First time doing this and I'm fairly familiar with HTML and CSS however I'm not sure how to target Subcategories

Is there a way to target Subcategories when using a custom response page?

 

The online documentation only mentions <category/>

 

also do you upload the file as a .txt or .html file?

 

this is what I have in the script part

<div id="content">

<p><img src="http://example.com/test.jpg"</img></p>

<script type="text/javascript">
var cat = "<category/>";
switch(cat)
{
case 'file-sharing':
document.getElementById("content").innerHTML = "file-sharing";
break;
}
</script>

</div>

Who Me Too'd this topic