Every repository with this icon (
Every repository with this icon (
| Description: | jQuery Javascript plugin which slides a webpage over to reveal an additional interaction pane. edit |
-
1 comment Created 5 months ago by perezdfeaturexintroduce support for local/inline divs to be placed into the slideplannedxComments
-
Reported by kaiz.mak, May 20, 2009
Is it possible to use pageslide in imagemap link?
ie.
<area shape="poly" coords="128,14,318,200,307,210,120,26"rel="pageslide" href="Page2.html">
</map>What is the expected output? What do you see instead?
A open new page instead of page slide from the rightWhat version of the product are you using? On what operating system?
Windows Vista 32bit IE7 and FireFox 3Comments
-
0 comments Created 5 months ago by perezdbugxrel=pageslide initialization should not replace, but append if necessary.plannedxComments
-
I find that the only way I can get animated DHTML (http://www.dhteumeuleu.com/dhtml/yoshisland.html) to work in a sliding pane is to put it into a frame, this causes an inconsistency if a repeat background is used, visually. Also when applying MooTools chaining functions to the text I find it does not work (http://richardimanning.com/wpblog/2009/02/chaining-functions-in-mootools-for-dynamic-text-effects/)
Comments
-
<span> inside of an anchor tag breaks the link and loads domain.com/undefined
2 comments Created 2 months ago by devkineticUsing the following code inside of a pageslide:
<a href="http://www.test.com" class="buttons"><span>Visit Client Site</span></a>When clicked will open in the same window "domain.com/undefined" instead of the intended external link to http://www.other-domain.com
When the is removed the link works as intended. AKA:
<a href="http://www.test.com" class="buttons">Visit Client Site</a>Comments
devkinetic
Wed Sep 09 21:30:06 -0700 2009
| link
changed:
$("#pageslide-slide-wrap a").unbind('click').click(function(elm){document.location.href=elm.target.href});to:
$("#pageslide-slide-wrap a").unbind('click').click(function(elm){document.location.href=this.href});And that worked. I think I'm using an old version though. I tried the latest build here and that the span still broke things so I'm staying on my old version with the code change noted above. You can check it out at www.devkinetic.com to debug.
devkinetic
Thu Sep 10 13:02:18 -0700 2009
| link
Did more testing with the 1.2 release. Broken with default code but works after modifying line 105:
document.location.href = elm.target.href;
to:
document.location.href = this.href;The right clicking is still messed up though
-
Would it be possible to preload content in the sliding page? Experimenting with putting a Wordpress sidebar in/as the slide, but there's as 3-4 s delay in content showing up. Could be my lacking skills in programming but thought I should ask.
Comments
-
I implemented this plugin pretty quickly. I used it to display a contact form. The only problem is that the form won't submit. Wondering if there was a quick fix for this...
Comments
Hey Scott,
i have the same problem.
Here the link to the form:
http://www.lange-nacht-des-sports.de/start.phpClick the newsletter button in the right sidebar.
By LoschoPS: I love this plugin. :-)
Hi Loscho,
I don't see the Newsletter button. Is it supposed to be near Download?
I did correspond with someone a while back, and they were able to submit the form via Javascript:
$("#form-name").submit();Maybe that will fix it?
-Scott
Ohh...sorry my issue. Now you can find the newsletter form on:
http://www.lange-nacht-des-sports.de/start.phpMaybe your short script can help me. Could you tell me where do i have to place the snippet in the code?
Thanks
Loscho -
when the page_slider is used all links on the main page stops working, i can se the links and click them but nothing happens?
Solution?
Comments
- bug▾
- enhancement▾
- feature▾
- planned▾
- Apply to Selection
-
Change Color…
Preview:preview
- Rename…
- Delete












I want to think carefully about this feature, because it could step on the toes of unobtrusive javascript techniques.