Does anyone know a lightbox in which I can load pages? I found one called lightbox-gone-wild but I am having problems with it.
http://fancybox.net/ ... I've used it with good results in the past.
Related
I'm currently running a Wordpress website and i'm trying to get the best results in terms of speed/score in pageinsights. However, there are a few scripts that keep on loading !
I was wondering if there is a way to prevent this exact file from loading in the page, is a such thing possible ?
Thank you
To answer your question, yes, there is a function in Wordpress to disable script. Kindly see the link: https://developer.wordpress.org/reference/functions/wp_deregister_script/
I have a website that wasn't developed by me, it is a wordpress theme and I'm not sure how to do this, as I need to change the code.
The theme comes with one carousel on the homepage called from a php template part. What I need is to have two carousels instead of one.
This is the site: http://tehar.com.br/
As you guys can see, the website is actually with two carousels but they are not working, since I guess the usage of both in the same time causes the javascript to conflict.
I wasn't able to find any javascript call on the page file, and even the .js file that handles the carousel.
Any guess of what to do? I really don't have any clue on what to do.
Thanks!
I am trying to create a small frame on my site that will show the home page of another site similar to what google is doing with your most viewed pages. I know how to create this with frames but I am really against frames in general for many reasons not worth mentioning. Is there a jQuery plugin somewhere that can do that for me?
For a more visual explanation go here and navigate to 'portfolio'. The current developer is using simple images for what he is doing. I would like those icons to be frames of other sites instead
You want an actual image of a webpage? You'd need something like html2canvas, but that'll be html5 only. There's some methods for doing this in PHP as well, but it's tricky, and I've only heard of this in theory, never actually practiced it myself.
How about this link?
Website screenshots using PHP
To embed an external page within your page, you should check out the <iframe> tag.
As pointed out in the other answer absolutely the best solution to embedding an external site into yours is usually an <iframe>.
You could, in theory, avoid using <iframe>s by pulling in the HTML from the external sites via ajax requests and injecting it into your page, as appropriate, using javascript. This is a much more heavyweight solution however and I wouldn't recommend it to solve your particular problem, but just to point it out.
What I would recommend however is just linking to the sites, potentially with target="_blank" so that the links don't send the browser away from your portfolio.
<iframe>s have their place for certain solutions, but for browsing the different sites you've worked on? No - I'd say the user would benefit from the full browser window experience for that.
My website has tons of large images that reduces my site speed. I want to load all of the images of my website after the website is loaded without them.
What is the best solution to do that??? I want it in jQuery. Any NICE JQUERY PLUGIN suggestion is appreciated.
Thanks in advance.
My favorite is http://www.appelsiini.net/projects/lazyload
I used to do this on my ASP pages.
Just create all your images tags like this
<img ID="img_1"/>
Once this is done, with Jquery :
$(document).ready(function(){
document.img_1.src="YourImageUrl";
});
There you go, as soon as your page is done loading the content, it will show all your images.
I really need to know what flash photo gallery is used on this site?
http://www.shad0w.ru/impression.html
Also do you know any similar javascript script?
the gallery is:
http://www.simpleviewer.net/simpleviewer/
there are plenty of JavaScript photo galleries available -
one i like is http://devkick.com/lab/galleria/demo_01.htm
hope that helps.