Support Forums

Open/close contact owner form with accordion functionality

This is a discussion on Open/close contact owner form with accordion functionality within the TemplateCodes forums, part of the Third Party Support category; C68 version: v4.2.1 Developer, template Sigma Hello, I try to add accordion fuctionality to the contact owner form in contactowner.tpl ...


Go Back   68 Classifieds Forums > Third Party Support > TemplateCodes

Reply
 
Thread Tools Display Modes
Old 01-15-2011, 09:38 AM   #1
Customer
 
Join Date: Oct 2010
Posts: 53
Rep Power: 5
zooi is on a distinguished road
Post Open/close contact owner form with accordion functionality

C68 version: v4.2.1 Developer, template Sigma

Hello,

I try to add accordion fuctionality to the contact owner form in contactowner.tpl so that it is closed untill a visitor wants to contact the advertiser of the listing.
I have used the same functionality as in the accordion.tpl and this works partly because now also the left menu (accordion) open/close if I click to open the contact owner form link.
I have tried to modify layout.js without succes.
Is it possible to use multiple accordion functionality at one site page?

Who can give me some direction/hint?

Thank you in advance
zooi is offline   Reply With Quote
Old 01-16-2011, 08:45 AM   #2
Customer
 
Join Date: Oct 2010
Posts: 53
Rep Power: 5
zooi is on a distinguished road
Default

Solved! Not used the accordion but toggle Jquery functionality and Javascript
See below:

Code:
<h3 id="expanderHead" style="cursor:pointer;">
	<span id="expanderSign">+</span> {$smarty.const.LANG_DIRECT_CONTACT_OWNER}
</h3>
<div id="expanderContent" style="display:none">
<form >
 Your form
</form>
<!-- End Contact Form -->
</div>
{literal}
<script type="text/javascript">
$(document).ready(function(){
	$("#expanderHead").click(function(){
		$("#expanderContent").slideToggle();
		if ($("#expanderSign").text() == "+"){
			$("#expanderSign").html("−")
		}
		else {
			$("#expanderSign").text("+")
		}
	});
});
</script>
{/literal}
zooi is offline   Reply With Quote
Reply

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
contact owner form early Templates, HTML, CSS, and Design Help 5 05-19-2008 01:50 AM


All times are GMT -4. The time now is 08:00 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2011, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0