I want to make a widget that contains links to other links but at the same widget, and those links to web pages. but I do not know how faire.s please! Does someone could help me?thank you
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- iionly@iionly

iionly - 0 likes
- Yves Bertrand EMANYE@yveslands

Yves Bertrand EMANYE - 0 likes
- DhrupDeScoop@Dhrup2000

DhrupDeScoop - 0 likes
- Yves Bertrand EMANYE@yveslands

Yves Bertrand EMANYE - 0 likes
- Yves Bertrand EMANYE@yveslands

Yves Bertrand EMANYE - 0 likes
- DhrupDeScoop@Dhrup2000

DhrupDeScoop - 0 likes
You must log in to post replies.I'm sorry but I don't fully understand what you intend to do. What do you mean with "contains links to other links"?
in fact I want to make a widget that contains links but in a way that when you click on a link it opens in the same widget content
<a target='<some`addressable`block`within`the`widget" href="...." >"
what is "some adressable bloc within the widget?"
in fact, clicking on a link will somehow help change the content of the widget
Some standard HTML 'block' that can be the target for href 'target=' or be addressed by JavaScript or jQuery or DOM manipulation to set the contents' value --> e.g. IFrame for HTML HREF addessibility, DIV for JS/jQuery addessibility.
EG:
HTML Method:=
<a target="WdgetContentBlock' href="http://www.MyWidgetURL">MyLink</a>
<IFRAME id ="WdgetContentBlock" name="WidgetContentBLock" src="">
<IFRAME>
JS/jQuery Method:=
<a id="LINK1" target="WdgetContentBlock' href="http://www.MyWidgetURL">MyLink</a>
<DIV id ="WdgetContentBlock" name="WidgetContentBLock" src="">
<DIV>
<script type="text/javascript" type="text/javascript">
$('#LINK1".click(function{
// setup the source content from LINK1's URL into DIV id WdgetContentBlock.
});
</script>