Reputation Activity
-
YamaDan reacted to andy9l in Animated Collapsible - DivJust use this jQuery:
$(document).ready(function(){ /*Copy, paste and edit the code below for the divs you need...*/ $("#a_ID").mouseover(function(){ $("#div_ID_slide").slideToggle(500); }); $("#a_ID").mouseout(function(){ $("#div_ID_slide").slideToggle(500); }); /*Copy, paste and edit the code above for the divs you need...*/ });
Then use this HTML for the link to open a div:
<a onclick="return false;" href="#" id="a_ID">Back Pain</a>
And this HTML for a div which is to be opened:
<div id="div_ID_slide" style="display:none;">Lorem ipsum...</div>
Change the id attribute of the link and div, and the values $("HERE") in the jQuery according to your page. It should work...
You could do some function to make the code shorter, but this will get the job done.
-
YamaDan reacted to andy9l in Animated Collapsible - DivSeems like a lot of unnecessary javascript to do such a simple thing.
Anyway, to answer your question, try changing this (in your HMTL):
<a href="javascript:animatedcollapse.toggle('cat')">Back Pain</a>
To this:
<a href="#" onmouseover="javascript:animatedcollapse.toggle('cat')" onmouseout="javascript:animatedcollapse.toggle('cat')" onclick="return:false;">Back Pain</a>
-
YamaDan reacted to EnzoAmata in Whats the best way to intergrate a blogthere are three full tutorials on how to build a WP Theme:
Part One : Part Two : Part Three
-
YamaDan reacted to HogIT in Building a reputationAs has been discussed before there are several types of member participating in the forum.
There are those that are here who participate to help others, hopefully in return for help they received now or in the future.
There are those who are here for what they can get ..... job seekers etc!
Could I ask members to +1 members who have provided help/solutions to problems.
This will enhance the individuals forum reputation which will help diffentiate those members who contribute from thos that don't.
Soory mods, just noticed I posted this in the wrong forum .... please don't -1 me.
-
YamaDan got a reaction from Torrix in Using tutorials as a web designer?Hi,
Or you could try Nettuts and Blip.tv for tutorials.
Dan.
-
Ok I,m still in the process of learning.
My holiday is coming up, i've got a mobile broadband on my laptop.
BUT my wife just said "I,m glad your not taking your bloody laptop on holiday."
Of course not!.
(but I was thinking about it)
Think i'll just take a book for some light reading on css.
-
Ok I,m still in the process of learning.
My holiday is coming up, i've got a mobile broadband on my laptop.
BUT my wife just said "I,m glad your not taking your bloody laptop on holiday."
Of course not!.
(but I was thinking about it)
Think i'll just take a book for some light reading on css.
-