Latests Plugins
INK is a new way to own your content. It’s a well known fact, the content you produce can be shared all around the web and in a very large number of ways. One of the most common ways is to simply copy the content and paste it wherever we want it to be shared. […]
Read more »
prettyLoader is a small (less than 4kb uncompressed) jQuery plugin that aim at making your life easier regarding ajax loader display. You know, when you do an ajax call and you never quite know where to position your loader. prettyLoader takes care of that for you, by default, prettyLoader will “hook” to the jQuery ajax function […]
Read more »
prettySociable is a jQuery plugin that tries to make sharing fun while being easy to use. It was inspired by the sharing on mashable.com. While ShareThis and AddThis provides a very useful piece code that allow users to share basically anything everywhere, their solution is not the prettiest nor the easiest to use. prettySociable simply […]
Read more »
[…] This post was mentioned on Twitter by Pier-Luc Petitclerc, Stephane Caron and jQuery Watcher , Larry King. Larry King said: prettyPhoto 3.0.1: Bug fix for jQuery 1.4.4 | Stéphane Caron – No … http://bit.ly/hRHo9f #jQuery […]
Hello, i recently got Pretybox (v nice work btw) and discovered a little bug with the prettyPhoto modal box.
Though it only occurs with a lot of pics and only with the ones that are small in width
Just add these in the the first gallery example of your index.html file and find out!!!
Sry for 2ble posting… i have send you the html file via mail! Be well
Hello, sorry for my poor english. I´m Juan, from Argentina. Please I need help. I upgrade all to this new verson of prettyphoto. I have an html & css site, I can see it perfect in my computer, but when I upload to my hosting I can´t see all the png (borders, close button, and the others…). I allready try with all the version of images, dark rounded, facebook, etc… Please help me!
Well, It´s resolved!! 🙂
The new prettyphoto.css has this path:
../images/prettyPhoto/facebook/contentPatternTop.png
But th folder with the images I have in /images it isn’t called prettyphoto. It´s called prettyphoto…So, I rename this folder, and I upload…
I’m really happy 🙂
I hope my experience will be useful for somebody!
Grettings from Argentina.
Please delete my previous comment….
Well, It´s resolved!! 🙂
The new prettyphoto.css has this path:
../images/prettyPhoto/facebook/contentPatternTop.png
But th folder with the images I have in /images it isn’t called prettyPhoto. It´s called prettyphoto…So, I rename this folder to prettyPhoto, and I upload…
I’m really happy 🙂
I hope my experience will be useful for somebody!
Grettings from Argentina.
Hey eq2lzb, very interesting post, it really got me thinking. Thank you. 94x7q
Very good post, thank you for this fantastic facts.
Hola, I just wanted to note that in Version: 2.5.6 – i’m not sure of any later ones but on this version the width doesn’t mess up in IE 8, though your new version puts a horizontal bar and i’m not quite sure where that is coming from! I just thought I would share that with you!
Thanks! I love your scripts! MUCH LOVE <3
Hi,
I have an asp.net form inside prettyPhoto.
Inside the form i have user controls.
One user control contains 3 buttons.
When i click on the button, the server side event is not being fired.
Is this a bug?
Regards,
Rakesh
API Call does not work!
$.prettyPhoto.open([‘images/fullscreen/1.jpg’,’images/fullscreen/2.jpg’],[‘lol’,”],[”,’Hello!’]);
Please help!
Hello,
i try do this but it not works, help me please!!
$.prettyPhoto.open( ‘/intranet/mas_info.html’, ‘Informacion’, ‘Test’);
Found a small mistake in prettyPhoto.css. It won’t be noticed if you copy everything but if you don’t, then it will
div.dark_square .pp_loaderIcon{background: url(../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat;}
div.dark_square .pp_content_container .pp_left{background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y;}
div.dark_square .pp_content_container .pp_right{background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y;}
dark_rounded should be dark_square
Well, have a nice holidays. I will continue customise this to my flavour 🙂
Speaking of users, the Zune “Social” is also great fun, letting you find others with shared tastes and becoming friends with them.
i want feedback
the allow_resize can’t use in ie and chrome
i have set default_width,but can’t run…
and can set display the Expand the image parameter
thx
Awesome plugin for jQuery. I want to tell you that it’s not working with IE9 atm 🙂
Why are you using .unbind(‘resize’)? This will unbind other resize events too, right? At least that’s what I’m experiencing over here. Removing that fixes my problems (what does it break in prettyPhoto?)
cheers,
/Anton
Hi,
Can you make jwplayer work in this plugin???
Hey, How to play 720P video using Pretty photo – youtube content. Now,its showing 320p when the video starts. I’m looking for 720p quality at the start up. Can any one just tell me what to do?
Sri
+1 on a working example using the very common and useful JWplayer!
Annnd, thanks for all you do!
The youtube fullscreen icon is missing when play prettyPhoto,
Please help! Does anyone knows how to add the full screen icon into the “prettyPhoto” youtube videos.
Thanks,
Hi,
Is it possible on a gallery image to have only the left right arrows for navigation but without that “preview of the other photos” which appears when you hover the mouse over the image ?
Thanks,
Dinu
The YouTube fullscreen function would be very helpful.
Does anyone know a way doing this at the moment through PrettyPhoto?
Thanks
Is there a way to change youtube video sizes and also have full screen function?
To resize the video use width & height
To see 720p you must define a viewer big enough, for example:
VIDEO 720p
sorry, in my previous post the code was hidden and you saw only the link VIDEO 720p
here is the code:
To resize the video use width & height
To see 720p you must define a viewer big enough, for example:
href=”http://www.youtube.com/watch?v=FxlhBIYZTDI&width=1280&height=740″ rel=”prettyPhoto” title=””
this, of corse in <a tag
FIX to the missing fullscreen thing:
around lines 244 :
case 'youtube':
pp_dimensions = _fitToViewport(movie_width,movie_height); // Fit item to viewport
movie = 'http://www.youtube.com/v/'+grab_param('v',pp_images[set_position]);
if(settings.autoplay) movie += "&autoplay=1";
toInject = settings.flash_markup.replace(/{width}/g,pp_dimensions['width']).replace(/{height}/g,pp_dimensions['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);
break;
add the line:
movie+="&fs=1";
so that it looks like:
case 'youtube':
pp_dimensions = _fitToViewport(movie_width,movie_height); // Fit item to viewport
movie = 'http://www.youtube.com/v/'+grab_param('v',pp_images[set_position]);
if(settings.autoplay) movie += "&autoplay=1";
movie+="&fs=1";
toInject = settings.flash_markup.replace(/{width}/g,pp_dimensions['width']).replace(/{height}/g,pp_dimensions['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);
break;
Hello All,
To have the youtube fullscreen button just add “?fs=1” to the src value in the embed tag (this is in the javascript file)
so it used to be like this :
<embed src="http://www.youtube.com/v/'+grab_param('v',images[setPosition])+'" type="application
now it will become like this :
<embed src="http://www.youtube.com/v/'+grab_param('v',images[setPosition])+'"?fs=1 type="application
Awesome plugin for jQuery. I want to tell you that it’s not working with IE9 atm 🙂
Such a great place where you can get free amazon gift card code generator online. You can also get 100% safe and working amazon gift card codes completely free of cost.ttt
all tv famous programs here in on your android phone with no fee after installation cartoon hd application.
Please solve the size issue of the video, and it is not working well
Thanks anyway, but this is not working. Please correct the following issues.
Very Interesting and wonderful information keep sharing this post kindly check
download instagram video
3fQfEY Very informative article post.Really thank you! Fantastic.
“Sry for 2ble posting… i have send you the html file via mail! Be well ”
Read more about prettyPhoto 3.0.1: Bug fix for jQuery 1.4.4Stéphane Caron – No Margin For Errors on:
http://www.no-margin-for-errors.com/blog/2010/11/24/prettyphoto-3-0-1-bug-fix-for-jquery-1-4-4/?utm_source=INK&utm_medium=copy&utm_campaign=share&
I really liked your blog article.Really thank you! Will read on…
very nice put up, i certainly love this web site, keep on it
with the turn out of this world. The second level is beyond the first one
This actually answered my own problem, thank an individual!
Some truly good content on this internet site , thanks for contribution.
Really wonderful info can be found on web site.
You, my friend, ROCK! I found just the information I already searched everywhere and simply couldn at locate it. What a perfect site.
This web site really has all the info I needed about this subject and didn at know who to ask.
Thank you for your blog.Really looking forward to read more.
Wow, great blog.Really thank you! Really Great.
Thanks-a-mundo for the blog post.Much thanks again. Will read on
Im thankful for the post.Much thanks again. Really Great.
Thanks, I ave recently been looking for info about this subject for a while and yours is the greatest I ave found out so far. However, what concerning the bottom line? Are you sure about the source?
to be using? I am having some small security problems with