Commit 34ee0485 by Nilu

HT004, making the entire tab clickable (not only the button) to display expanded…

HT004, making the entire tab clickable (not only the button) to display expanded details of role fit, culture and requirements
parent eb3cd776
......@@ -40,15 +40,16 @@
$(document).ready(function()
{
$('.expand-box span').click(function() {
$('.pro-bar').click(function() {
var $el = $(this);
if($(this).hasClass('hasarrow')){
$el.find('img').attr('src','images/select-top-arrow.svg');
$el.find('img').attr('src','images/select-down-arrow.svg');
$(this).removeClass('hasarrow');
}
else{
$el.find('img').attr('src','images/select-down-arrow.svg');
$el.find('img').attr('src','images/select-top-arrow.svg');
$(this).addClass('hasarrow');
}
});
......
......@@ -10,9 +10,9 @@ $(document).ready(function () {
$('.navbar-toggle').click(function () {
$('.main-menu ul').slideToggle();
});
$('.expand-box span').click(function () {
$('.pro-bar').click(function () {
var $el = $(this);
$el.parent().parent().next().slideToggle();
$el.next().slideToggle();
});
if ($(window).width() <= '767') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment