liAccordion / accordion
Content Panels

Color templates

Select the desired color
Or set your custom color

Main Layout

Marker Shape

Marker Sign

Marker Position

Color Type

RESULT

  • What is the Envato Market API?

      The Envato Market sites have an API so that users can access account data (such as sales rates and referral information) via outside applications and without the use of your Envato account password.

  • How do I use the API?

      If you're a developer and would like to use the Envato Market API for an application you're developing, you can access all the documentation here.

      A selection of the existing applications available is over at extras.envato.com. These applications can be accessed with your Envato account's username and an API key.

  • What is an API key?

      Your API key is a password for applications to access your account data through our API, without using your Envato password. You should never give out your Envato password to anyone.

  • Where can I get an API key?

      To generate an API key, select Settings from the account dropdown, then navigate to the API Keys tab. Multiple API keys can be generated so it is recommended to use one per application.

Include files <head> ...[THIS CODE]... </head>

<!--If you have already use jquery, then this line is not necessary--> 
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>

<!-- Plugins files-->
<link rel="stylesheet" href="css/liAccordion.css">
<script src="js/jquery.liAccordion.js"></script> 

Custom CSS <style> ...[THIS CODE]... </style>

There will be generated CSS

Plugins Initialization <head> ...[THIS CODE]... </head>

<!-- Initialization of plugin --> 
<script>
$(function(){
	$('.ini_class').liAccordion();
})
</script> 

HTML <body> ...[THIS CODE]... </body>

<ul class="ini_class" data-colortheme="Pink" data-layout="menu" data-markershape="square" data-markersign="triangle" data-markerpos="left" data-colortype="bg">
	<li><a href="#"><strong>What is the Envato Market API?</strong></a>
		<ul>
			<p>The Envato Market sites have an API so that users can access account data (such as sales rates and referral information) via outside applications and without the use of your Envato account password.</p>	
		</ul>
	</li>
	<li><a href="#"><strong>How do I use the API?</strong></a>
		<ul>
			<p>If you're a developer and would like to use the Envato Market API for an application you're developing, you can access all the documentation here.</p>
			<p>A selection of the existing applications available is over at extras.envato.com. These applications can be accessed with your Envato account's username and an API key.</p>
		</ul>
	</li>
	
	<li><a href="#"><strong>What is an API key?</strong></a>
		<ul>
			<p>Your API key is a password for applications to access your account data through our API, without using your Envato password. You should never give out your Envato password to anyone.</p>
		</ul>
	</li>
	
	<li><a href="#"><strong>Where can I get an API key?</strong></a>
		<ul>
			<p>To generate an API key, select Settings from the account dropdown, then navigate to the API Keys tab. Multiple API keys can be generated so it is recommended to use one per application.</p>
		</ul>
	</li>
</ul>