The LimeSurvey Fund-Raiser 2012 is complete. Thank you for donating a total of 25,000 USD!     List of donors »

Willkommen, Gast
Benutzername: Passwort: Angemeldet bleiben:
  • Seite:
  • 1

THEMA: How to add "Help" tips to certain words or selections?

How to add "Help" tips to certain words or selections? 4 Monate 2 Wochen her #90756

  • ChengF
  • ChengFs Avatar
  • OFFLINE
  • Fresh Lemon
  • Beiträge: 12
  • Karma: 0
I would like to add further description for certain words or subquestions. The descriptions should show as a little call out box when the mouse hovers on the word and it should disappear once the mouse is moved away. I used the JavaScript command onmouseover and onmouseout. But it didn't work correctly. I am wondering if anyone knows how to do that in LS, or if there is no easy way, what kind of JavaScript Code would make it work?

Thank you in advance!
Der Administrator hat öffentliche Schreibrechte deaktiviert.

Re: How to add "Help" tips to certain words or selections? 4 Monate 2 Wochen her #90759

  • helper
  • helpers Avatar
  • OFFLINE
  • Expert Lime
  • Beiträge: 126
  • Dank erhalten: 17
  • Karma: 0
Just a thought, but have you tried an inline link with an alt and a title:

example:
This is a <a href="#" alt="Survey help goes here" title="Survey help goes here">survey</a>
Der Administrator hat öffentliche Schreibrechte deaktiviert.
Folgende Benutzer bedankten sich: ChengF

Re: How to add "Help" tips to certain words or selections? 4 Monate 2 Wochen her #90790

  • DenisChenu
  • DenisChenus Avatar
  • OFFLINE
  • Moderator Lime
  • Beiträge: 4431
  • Dank erhalten: 460
  • Karma: 167
helper trick can do the job, but think we can use an image with title too.
<img src="{TEMPLATEURL}/myhelp.png" alt="Help text here" />

And after use some tooltip jquery sytem.

Denis
(no link, no click ;) )
Letzte Änderung: 4 Monate 2 Wochen her von DenisChenu. Begründung: " lost
Der Administrator hat öffentliche Schreibrechte deaktiviert.

Re: How to add "Help" tips to certain words or selections? 4 Monate 2 Wochen her #90814

  • tpartner
  • tpartners Avatar
  • OFFLINE
  • LimeSurvey Team
  • Beiträge: 2870
  • Dank erhalten: 429
  • Karma: 246
To avoid the click, you can also use a <span> element with a title:
<span class="tip" title="Some tip text goes here">This is a tooltip span</span>

And then maybe style the tips a bit in template.css:
span.tip {
	color: #0000FF;
	cursor: help;
}

Then as Denis points out, you can use the qTip plugin shipped with LS:

1) Add this to startpage.pstpl right after {TEMPLATEJS}:
<script src="/scripts/jquery/jquery.qtip.js" type="text/javascript">
2) Add something like this to the end of template.js:
$(document).ready(function() {
	$('span.tip').qtip({
		position: {
			corner: {
			target: 'topMiddle',
			tooltip: 'bottomLeft'
			}
		}
	});
});

More info on the plugin here - craigsworks.com/projects/qtip/

Capture_2013-01-08.JPG
Cheers,
Tony

LimeSurvey is open-source and run entirely by volunteers so please consider donating to support the project.
Letzte Änderung: 4 Monate 2 Wochen her von tpartner.
Der Administrator hat öffentliche Schreibrechte deaktiviert.
Folgende Benutzer bedankten sich: ChengF

Re: How to add "Help" tips to certain words or selections? 4 Monate 2 Wochen her #90815

  • tpartner
  • tpartners Avatar
  • OFFLINE
  • LimeSurvey Team
  • Beiträge: 2870
  • Dank erhalten: 429
  • Karma: 246
Oops, small mistake on the qTip part - add this to startpage.pstpl right after {TEMPLATEJS}:
<script src="/scripts/jquery/jquery.qtip.js" type="text/javascript"></script>
Cheers,
Tony

LimeSurvey is open-source and run entirely by volunteers so please consider donating to support the project.
Der Administrator hat öffentliche Schreibrechte deaktiviert.
Folgende Benutzer bedankten sich: ChengF
  • Seite:
  • 1
Moderatoren: DenisChenu, ITEd
Ladezeit der Seite: 0.517 Sekunden
Donation Image