Jun 28

NotesForLightBox is a simple, unobtrusive script used to overlay images on the current page. It's a snap to setup and works on all modern browsers.
The current functionalities are:

  • Rounded corners light box
  • Navigation with buttons
  • Real slide show with progress bar

thNotesForLightBox2

thNotesForLightBox 

Live demo

How to use ?

Setup

1. NotesForLightbox uses the JQuery Library. You will need to include these two Javascript files in your header (in this order).

<script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="js/NFLightBox.js" type="text/javascript"></script> 

2. Include the NotesForLightbox CSS file (or append your active stylesheet with the NotesForLightbox styles).

<link href="css/nf.lightbox.css" rel="stylesheet" type="text/css" media="screen" />

Call

You can call the NotesForLightbox like this:

<script type="text/javascript">

    $(function() {
        // Use this example, or... 
        $('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel 
        // This, or... 
        $('#gallery a').lightBox(); // Select all links in object with gallery ID 
        // This, or... 
        $('a.lightbox').lightBox(); // Select all links with lightbox class 
        // This, or... 
        $('a').lightBox(); // Select all links in the page 
        // ... The possibility are many. Use your creative or choose one in the examples above 
    }); 

</script>

 

Configure

Settings

///    <param name="settings" type="Options"> 
///        1: overlayBgColor - (string) Background color to overlay; inform a hexadecimal value like: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue values of the color. 
///        2: overlayOpacity - (integer) Opacity value to overlay; inform: 0.X. Where X are number from 0 to 9. 
///        3: fixedNavigation - (boolean) Boolean that informs if the navigation (next and prev button) will be fixed or not in the interface. 
///        4: imageLoading - (string) Path and the name of the loading icon image 
///        5: imageBtnPrev - (string) Path and the name of the prev button image 
///        6: imageBtnNext - (string) Path and the name of the next button image 
///        7: imageBtnClose - (string) Path and the name of the close button image 
///        8: imageBlank - (string) Path and the name of a blank image (one pixel) 
///        9: imageBtnBottomPrev - (string) Path and the name of the bottom prev button image 
///        10: imageBtnBottomNext - (string) (string) Path and the name of the bottom next button image 
///        11: imageBtnPlay - (string) Path and the name of the close button image 
///        12: imageBtnStop - (string) Path and the name of the play button image 
///        13: containerBorderSize - (integer) If you adjust the padding in the CSS for the container, #lightbox-container-image-box, you will need to update this value 
///        14: containerResizeSpeed - (integer) Specify the resize duration of container image. These number are miliseconds. 500 is default. 
///        15: txtImage - (string) Specify text "Image" 
///        16: txtOf - (string) Specify text "of" 
///        17: txtPrev - (string) Specify text "previous" 
///        18: keyToNext - (string) Specify text "next" 
///        19: keyToClose - (string) (c = close) Letter to close the jQuery lightBox interface. Beyond this letter, the letter X and the SCAPE key is used to. 
///        20: keyToPrev - (string) (p = previous) Letter to show the previous image. 
///        21: keyToNext - (string) (n = next) Letter to show the next image. 
///        22: slideShowTimer - (integer) number of milliseconds to change image by default 5000. 
///    </param> 

 

 

Call with settings

 

<script type="text/javascript">
    $(function() {
        var settings = { containerResizeSpeed: 350 };
        $('#gallery a').lightBox(settings);
    }); 
</script>

 

Source Code and License

 

Copyright (c) 2009, Helori LAMBERTY
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

* Neither the name of NotesFor.net nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Tags: | |

Comments

Rohit

Posted on Tuesday, 21 July 2009 04:03

I can not download the files. Are they removed???

Dave

Posted on Wednesday, 22 July 2009 09:12

Yeah, you guys should know that the download links appear to be broken.  Not just for this, but other downloads on the site as well.  Which is too bad, since it looks like you did another stellar job with this.

blueprintds.com

Posted on Thursday, 23 July 2009 15:47

Pingback from blueprintds.com

Top 14 jQuery Photo Slideshow / Gallery Plugins | Chicago Web Design

Bruno

Posted on Tuesday, 28 July 2009 19:55

In first place... congratulations!
Well, I'm trying to improve a feature, but I don't know how.
Is possible to use a link to invoque the lightbox? A link then is outside de gallery?

blog.tuvinh.com

Posted on Tuesday, 4 August 2009 08:56

Pingback from blog.tuvinh.com

30 Awesome Jquery Photo Plugins | TuVinhSoft .,JSC

David

Posted on Tuesday, 18 August 2009 16:16

I'm having problems setting the background of the Lightbox.

I've set:
#gallery

        {
        position: absolute;

        background-color: #444;


            padding: 10px;

            width: 520px;
            left: 1000px;
            top:  200px;

        }
But the background of the picture thumbnails is still the same color like on yours.What am I missing?

Thank you

David

Posted on Wednesday, 19 August 2009 06:25

Found the solution.Must've been blind xD

wallaceerick.com.br

Posted on Saturday, 22 August 2009 17:27

Pingback from wallaceerick.com.br

| Wallace Erick

zeroone

Posted on Saturday, 19 September 2009 04:33

is it a bug?

my webpage must be use DD_belatedPNG_0.0.8a-min.js and NotesForLightBox, i include two js files


Code:

<script type="text/javascript" src="/images/NFLightBox.js"></script>
<script type="text/javascript">
  $(function() {
            $('#big').lightBox();
        });

</script>
<!--[if IE 6]>
<script src="/images/DD_belatedPNG_0.0.8a-min.js"></script>
<script>
  /* EXAMPLE */
  DD_belatedPNG.fix('.main_left,.main_right,.probox,img');
  
  /* string argument can be any CSS selector */
  /* .png_bg example is unnecessary */
  /* change it to what suits you! */
</script>
<![endif]-->

now there is bug,  when i used IE6 open the page , click the link open the lightbox then i click the colse button,the lightbox it cann't to be close.

sorry! my E is poor.

Helori

Posted on Tuesday, 22 September 2009 03:03

I did not know this bug, I will check and give you a feedback by email if I find a solution.

Regards,
Helori

accessko

Posted on Friday, 2 October 2009 09:47

Hi
First I want to thank you for making this gallery. Great job.

I got a question about the use of the gallery.

Is it possible to make a category's of the images so only the images of the category will be shown in a graybox?

Regards,

Accessko

marketing internet

Posted on Wednesday, 14 October 2009 13:18

I just couldnt leave your website before saying that I really enjoyed the quality information you offer to your visitors... Will be back often to check up on new stuff you post!

Acai Bær

Posted on Thursday, 15 October 2009 14:42

Great writeup.. I guess you summed it all up.. Cheers

How to stop panic attacks

Posted on Friday, 30 October 2009 05:26

This article gives the light in which we can observe the reality. this is very nice one and gives indepth information. thanks for this nice article!

All Natural Weight Loss

Posted on Friday, 6 November 2009 22:00

you make things easier for us.
thank you for posting these codes
i hope i can make more out of these
codes.

Oes Tsetnoc

Posted on Thursday, 12 November 2009 09:20

Excellently written article, if only all bloggers offered the same content as you, the internet would be a much better place. Please keep it up! Cheers.

computer blog

Posted on Friday, 20 November 2009 13:32

Thanks for posting this info. I just want to let you know that I just check out your site and I find it very interesting and informative. I can’t wait to read lots of your posts.

Outsourcing

Posted on Wednesday, 25 November 2009 02:15

I was just thinking about NotesForLightBox and you have really helped out. Thanks!

Joe Carver

Posted on Friday, 18 December 2009 01:14

Thanks for the great work! I have integrated NFLightBox with the upcoming release of Coppermine Photo Gallery 1.5 that also uses jsquery. Your copyrights and statements remain.
Thanks again

dayak

Posted on Wednesday, 23 December 2009 12:20

Excellently written article, if only all bloggers offered the same content as you, the internet would be a much better place. Please keep it up! Cheers. I just couldnt leave your website before saying that I really enjoyed the quality information you offer to your visitors

stock photography

Posted on Wednesday, 30 December 2009 06:30

NotesForLightBox is a simple, unobtrusive script used to overlay images on the current page. It's a snap to setup and works on all modern browsers.

Kat

Posted on Thursday, 31 December 2009 06:47

Thats really cool, do you think I will be able to add it to my site? http://watchlivetv-online.com

pension annuities

Posted on Friday, 15 January 2010 07:06

This article gives the light in which we can observe the reality. this is very nice one and gives indepth information.

corporate entertainment ideas

Posted on Friday, 15 January 2010 15:35

This article gives the glow in which we can watch the veracity. This is very nice one and gives in-depth information. Thanks for this nice article!

Games

Posted on Monday, 18 January 2010 06:13

Searching for this for some time now - i guess luck is more advanced than search engines Smile

Woland

Posted on Tuesday, 19 January 2010 13:42

I have some bug in IE6. The bottom part of container (where "Image... of...") going down under the bottom end of screen. Sample is here: http://www.woland.info/tmp/bug.jpg

chopper tattoo

Posted on Thursday, 28 January 2010 01:18

This is such a cool story, I believe that the proof is all around us, and modern science and the massive increase in knowledge shows even more proof of a higher being!

colloidal silver products

Posted on Sunday, 31 January 2010 20:30

Thanks for this very useful info you have provided us. I will bookmark this for future reference and refer it to my friends. More power to your blog.

Apex Professionals LLC

Posted on Monday, 1 February 2010 03:08

This is a cool screen idea ! It is very interesting indeed.Thank you for your info.i love to read all info.This article gives the light in which we can observe the reality.

IVA

Posted on Thursday, 4 February 2010 03:20

Excellently written article, if only all bloggers offered the same content as you, the internet would be a much better place.

Chapel Hill Real Estate

Posted on Saturday, 6 February 2010 09:56

This is great! Just what I was looking for, Thanks for the coding & the demo.

printing magazine

Posted on Saturday, 13 February 2010 12:35

Thanks for this very useful info you have provided us. I will bookmark this for future reference and refer it to my friends. More power to your blog.

Ozan

Posted on Saturday, 13 February 2010 19:04

I can not use php; When I click the image file can not find the other;When I click the blank page comes

Oriya Matrimony

Posted on Sunday, 14 February 2010 07:36

Thank you for sharing, it's really a nice articles, pics are also cool

Oni Akuma

Posted on Monday, 22 February 2010 01:57

I really love this script -  is there a way to have the images pop up full size not auto-downsized for the browser size limits?  I am using images 1200 pixels tall and I am ok with them extending beyond current view and requiring vertical scrolling since a user will only click when they want to see a very detailed view...

Thanks in advance to anyone that might have any ideas where to start...

O.A.

purifier

Posted on Thursday, 25 February 2010 00:31

Love the rounded corners feature.  I hated having to make graphics for the rounded corners manually in photoshop

rap instrumentals

Posted on Tuesday, 20 April 2010 06:05

wow! this is a great site.. it's been very useful to me, especially for my new website that displays pictures, the codes make it easy.. I used it on blogging as well... simple and easy to setup .. nice! thanks for this script!!  

Cynthia

Posted on Wednesday, 21 April 2010 05:49

I like lightbox, and I am glad that it works fine with BlogEngine, finally I have a good alternative for WP and Joomla rokbox.

compound interest formula

Posted on Thursday, 22 April 2010 03:26

Yeah, NotesForLightBox is a simple, unobtrusive script used to overlay images on the current page. It's a snap to setup and works on all modern browsers.In fact,this resource like the one you mentioned here will be very useful to me! I will post a link to this page on my blog.Keep on taking action!

ZeeshanRasool

Posted on Thursday, 22 April 2010 03:30

Thanks for sharing this great lightbox. Its really simple and fully featured like play button auto resizing which i was looking.
Good work ! Keep it up

Zeeshan Rasool

construction games

Posted on Thursday, 22 April 2010 03:30

Through your website I know 3 functionalities of NotesForLightBox are:Rounded corners light box, Navigation with buttons, and Real slide show with progress bar. This a helpful info for my site.Indeed I can truly tell that your blog will get great interests.

rap instrumentals

Posted on Thursday, 22 April 2010 12:01


With this help from your site i can implement NotesForLightBox
and display images with such an ease.
Thanks a lot.

Affordable Small Business Web Design

Posted on Sunday, 2 May 2010 21:11

i would agree... noteforlightbox is really easy... especially for someone like me who is just a beginner at this

psychics

Posted on Thursday, 6 May 2010 10:26

This blog has some interesting info. I am really impressed with your efforts and really pleased to visit this post. Keep up the Good work going!! Thanks

Marketing Plans

Posted on Friday, 7 May 2010 15:02

Lightbox is getting good.

blackberry

Posted on Saturday, 8 May 2010 01:22

lightbox modification.. still need to try soon..

Micro Cap Stocks

Posted on Sunday, 9 May 2010 05:31

light box is a light weight tool for any work.

Hot Olympians

Posted on Sunday, 9 May 2010 10:05

I will have to take a longer look at Lightbox for my website.

Bratz

Posted on Monday, 10 May 2010 04:54

Thank you for the code, you saved me a lot of work.

Ann-Tattoo Designs for Women

Posted on Monday, 10 May 2010 11:32

Reading blogs helps me learn new information everyday.  Thanks for sharing.

Baccarat

Posted on Monday, 10 May 2010 12:19

Geez! Great post! Thanks for the instructional guide on how to create and update my website with Light Box. I'm still getting the hang of it - trying to play with some of the codes and such. It looks great though, I'm excited to use this for my personal blog too.

Leanora Devilliers

Posted on Tuesday, 11 May 2010 15:41

Awesome post! Thank you for sharing!

Retail Design

Posted on Wednesday, 12 May 2010 05:56

Thanks for the code snippet examples, I love using this lightbox effect when designing new sites.

ftp hosting

Posted on Saturday, 15 May 2010 09:30

Great info.. Keep on sharing nice thingss Smile This blog is interesting about its information, this is defined in uniqely behaviour. I will realy appreciate it.

Tinnitus Natural Cure

Posted on Sunday, 16 May 2010 06:34

Thanks for your code, very useful!!!!

Sauna

Posted on Wednesday, 19 May 2010 12:06

I found the information on light box in your post very useful.

Dallas moving company

Posted on Thursday, 20 May 2010 17:03

I really love this script -  is there a way to have the images pop up full size not auto-downsized for the browser size limits?  I am using images 1200 pixels tall and I am ok with them extending beyond current view and requiring vertical scrolling since a user will only click when they want to see a very detailed view...

Voluntary Insurance

Posted on Friday, 21 May 2010 11:17

I really aprreciate your work.You had done a lot of hard wor on the blog.good work

Greenville NC Classifieds

Posted on Saturday, 22 May 2010 06:16

I really love this script -  is there a way to have the images pop up full size not auto-downsized for the browser size limits?  I am using images 1200 pixels tall and I am ok with them extending beyond current view and requiring vertical scrolling since a user will only click when they want to see a very detailed view..

Dallas moving company

Posted on Saturday, 22 May 2010 08:34

Great script and great instructional guide. Keep up the good work.

Economics Degree Online

Posted on Saturday, 22 May 2010 11:11

Working script. I tested it.

Latest News

Posted on Monday, 24 May 2010 11:56

Out of the 3 features, I liked "Real slide show with progress bar" the most

Life Settlement

Posted on Tuesday, 25 May 2010 08:24

You had given me a lot of new ideas .i am really thankfull to you and to your team for the support.

Fireworks

Posted on Friday, 28 May 2010 01:35

These codes are just fantastic.
Earlier I had problem with this.
But this code has now made our work easier.
Thanks for this.

crafts for kids

Posted on Friday, 28 May 2010 03:07

thanks it is usefull script I use it in my website.

Waste To Energy

Posted on Saturday, 29 May 2010 01:39

Thanks for posting nice article...

recrutement maroc

Posted on Saturday, 29 May 2010 06:45

Thank you veri useful article. interessant

i keep coming back

Loris Breitmeyer

Posted on Monday, 31 May 2010 09:54

Just came to read about this, and I ended up spending 20 minutes reading your other posts too, good work dude

longreed40

Posted on Tuesday, 1 June 2010 09:49

Real slide show with progress bar --> love them

Haarentfernungen

Posted on Wednesday, 2 June 2010 10:24

You have inspired me, i have to write something about NotesForLightBox  on my site.

Alpinestar Jacket

Posted on Thursday, 3 June 2010 09:09

thanks for the code, it's work

Vincenzo Eastling

Posted on Thursday, 3 June 2010 13:29

Just checked out your weblog it is quite informative i shall certainly keep an eye on your blog, you have turned me into a frequent reader.Do you have a newsletter i can subscribe to ?

Compare Web Hosts

Posted on Saturday, 5 June 2010 23:12

wow, great information, thank you for sharing!

TV Software Guru

Posted on Sunday, 6 June 2010 01:31

That is a really good.  Have to love the internet. So much good information.

heru

Posted on Sunday, 6 June 2010 05:47

thank for information....

San Diego Computer Repair

Posted on Sunday, 6 June 2010 07:18

I have followed the instructions and everything is working. Thanks for the instructions.. really appreciate it..

Jaunita Marine

Posted on Sunday, 6 June 2010 10:26

thank you for posting.

Made to measure blinds

Posted on Monday, 7 June 2010 01:23

Great display. I liked the script.

oracle rac training

Posted on Monday, 7 June 2010 19:56

you have give us great simple tutor about ForLightBox .. thanks.

Maitresse Madeline

Posted on Friday, 11 June 2010 08:55

Rounded corners are great feature itself, but with images overlay it looks just amazing!

Amazon Price Tracker

Posted on Friday, 11 June 2010 11:54

Another great JQuery lightbox. This one looks classy, and has just enough features to make it useful but unobtrusive. Thank you for sharing this.

atlantica gold

Posted on Saturday, 12 June 2010 01:23

Thanks for the share, I have been readin online all day and this was actully worth reading. Thanks

website design münchen

Posted on Saturday, 12 June 2010 01:59

This is just exactly what I am looking for, I am having a hardtime editing notes for lightbox, good thing I stumbled upon this blog entry. You have saved me a lot of time. Cheers!

Aleph host

Posted on Monday, 14 June 2010 13:15

Hi! My friend just gave me lunch coz' I showed him your blog post. I had free lunch all thanks to you! Big smile! Kudos for this post! If anyone ever needs the cheapest webhosting packages just visit my link and use STUHST4U as the coupon code.

Nat

Posted on Monday, 14 June 2010 14:35

Thanks for this! Very useful!
I'm not sure if anyone is still reading these comments and would be able to help me, but I just have one question:
Am I correct in assuming that this script should resize the viewed photo to the size of the viewport? So that no scrolling is needed to see the whole photo? If yes, is there any straight forward reason why this wouldn't work (in none of the browsers I tried)? If no, is there a way to make it so? (I'm verynew to JQuery, so any pointers in the right direction are appreciated!)

Stellenbosch Guest House

Posted on Tuesday, 15 June 2010 08:48

Thanks for posting this. Really great post. Thanks!

Anantha Kumar

Posted on Tuesday, 15 June 2010 17:08

Paging is not working properly

Sletjes

Posted on Thursday, 17 June 2010 04:32

This article is very informative. Great stuff here.

Houston Lawyer

Posted on Monday, 21 June 2010 18:32

Solid article on lightboxing images.  As an amateur, do you have any recommendations to books that can teach me more?  I'm about at a basic level but really enjoy it.  Finding a code junky like yourself gets me happy, so any resources would help.  Thanks!

los angeles web design firm

Posted on Tuesday, 22 June 2010 13:46

I think you've got a lot of readers that are more than thankful to you and really pleased with the content on your blog, making me fantastically interested in what post will be next and about.

arpita

Posted on Wednesday, 23 June 2010 04:13

I’ve just subscribed to your RSS feed. I love your content.

Addiciton treatment

Posted on Wednesday, 23 June 2010 06:46

Nice post. I like it.

Cheap gaming computers

Posted on Friday, 25 June 2010 03:58

I was recently thinking about this the other day, and if i had not seen your blog, it would've been left at that. Thanks for this valuable insight!

cheapsoundbar

Posted on Saturday, 26 June 2010 06:09

Hello! great article, good job! thanks for sharing

Graham| Download YouPorn Videos

Posted on Saturday, 26 June 2010 19:46

I copy full code and am trying to get it but unfortunately it does not work. what can i do now?

bicycle racks for cars

Posted on Sunday, 27 June 2010 06:15

I am regularly expecting the Saturday to arrive and go out with my buddies and our bikes. For me it is very fulfilling.

iPod free

Posted on Sunday, 27 June 2010 07:39

I used this exact script to overlay a few images on my site and they looks fantastic.

stella @ birthday gifts for her

Posted on Sunday, 27 June 2010 07:57

There's also a Version 2

New in Version 2

Image Sets:
group related images and navigate through them with ease

Visual Effects:
fancy pants transitions

Backwards Compatibility: yes!

laptop cheap review

Posted on Sunday, 27 June 2010 15:02

great post. It's really helpful and I will bookmark this page. thanks

Stop Armpit Sweat

Posted on Sunday, 27 June 2010 20:20

Impressive article, loads of practical details.

proxies

Posted on Monday, 28 June 2010 01:37

Good Luck and good job! I been drinkin' so kinda got lost on this one but that's aright....

FDCPA Attorney

Posted on Tuesday, 29 June 2010 02:17

I visit your blog for first time. I found very interesting stuff for me to visit you very often. Thanks for sharing this interesting stuff. Please update your blog regularly for us.

immigration sweden

Posted on Tuesday, 29 June 2010 08:18

Rules of immigrations The rules of immigration mean among other things that a person from a non-Nordic country wishing to settle or work in Sweden must obtain a residence and work permit first, before coming here. If he applies for a permit after entering the country, the Immigration Board can refuse his application for that reason alone, without examining his grounds for applying. There are exceptions to this rule, as will be explained below.

criação de sites

Posted on Tuesday, 29 June 2010 10:06

Criação de Sites REMIND. Serviços de Webdesign, Criação de Sites Acessiveis e Otimização de Sites
para empresas e pessoas.

real stories

Posted on Tuesday, 29 June 2010 10:06

Anther feather on your cap. This should be pinned up on the wall of every design enthusiasts

arrow wood sheds

Posted on Tuesday, 29 June 2010 11:07

This is one of the best posts I’ve read from you in a long time. It’s perfect because I was just trying to figure out some problems.

desentupidora

Posted on Tuesday, 29 June 2010 13:55

desentupidora são paulo

starcraft 2 beta

Posted on Tuesday, 29 June 2010 18:10

Who here is into RTS games?

Abu Dhabi Apartments Rent

Posted on Wednesday, 30 June 2010 05:58

Thanks for sharing info. Keep up the good work...We hope you will visit our blog often as we discuss topics of interest to you

Personal Injury Claim Value

Posted on Wednesday, 30 June 2010 06:33

Great piece of code...thank you for sharing

Toya Essick

Posted on Wednesday, 30 June 2010 06:36

Great Read. I will Be back soon.

Always Tired

Posted on Wednesday, 30 June 2010 14:28

I dont understand the lighbox tutorial completely, but I do like the results.

clothing

Posted on Thursday, 1 July 2010 00:12

I’d actually twitter this specific thing last week Even though you blogged it.  I will link your blog.

Lavelle Liebowitz

Posted on Thursday, 1 July 2010 00:27

This is great! How did you learn about this when you were a newcomer to it?

Plans For Sheds

Posted on Thursday, 1 July 2010 01:39

Many thanks due to this excellent plugin - this is truly useful for all those bloggers like me. Seems like you've got a really good blog loaded full of details too. Thanks.

Denisha Keup

Posted on Thursday, 1 July 2010 04:10

Thanks for this informational post.This is first time on this website and really found it very informative.

usa casino blackjack

Posted on Friday, 2 July 2010 15:19

good post. so well.

Maine Security Systems

Posted on Friday, 2 July 2010 17:29

That looks really good.  Nice lightbox.

Rufus

Posted on Saturday, 3 July 2010 04:44

I am definitely gonna take this onboard, thanks brother!

meyda tiffany

Posted on Wednesday, 7 July 2010 03:51

Thanks for such a nice blog

Seattle Limo

Posted on Wednesday, 7 July 2010 15:39

agree pretty much with what you're saying here, not sure about the poster above me though.

Prescott

Posted on Thursday, 8 July 2010 01:26

I am new to LightBox, thanks for the helpful tips.

lingerie online

Posted on Thursday, 8 July 2010 05:10

this was a very interesting blog to read!

Geoffrey Mccandless

Posted on Thursday, 8 July 2010 22:34

Im not going to say what everyone else has already said, but I do want to comment on your knowledge of the topic.  Youre truly well-informed.  I cant believe how much of this I just wasnt aware of.

how to make your penis bigger video

Posted on Friday, 9 July 2010 19:45

I just clicked over from a similar site and figured I might as well check things out. Really like what I see so now I'm following you. Look forward to checking out your blog later on.

May Levy

Posted on Friday, 9 July 2010 21:26

How is it going, you really saved me a boat load of time with all the information you have on this website. I found just what I was looking for thank you

az dui lawyer

Posted on Saturday, 10 July 2010 00:52

Great info, Very informative...

Look Around You

Posted on Saturday, 10 July 2010 14:14

I am definitely gonna take this onboard, thanks brother!

cool videos to watch when your high

Posted on Saturday, 10 July 2010 14:54

check out this video, its quite rare  if you liked   zeigeist please rate <A href="http://video.mobileappz.net/">http://video.mobileappz.net/</A>

godric

Posted on Saturday, 10 July 2010 21:55

Trubloods.com is definitely any site specializing in providing every single 1 of the many advantages and night through the struck show True Blood. True Blood is actually named considering that the manufactured blood vessels how the particular japanese have created and also nowadays vampires emerge by means of the particular darkness to be able to attempt and also exist together together with human beings. A person follow Sookie Stackhouse since the lady bargains with the particular chaos which exists on earth. There is ambiance, comedy, motion, and several much far more as a person view vampires, humans because well as supernaturals conflict inside of the city regarding Bon Temps, Louisiana. Monitor free of cost channels with trubloods.com!

indysong

Posted on Sunday, 11 July 2010 06:09

great article,thanks for useful.

Dario Adsit

Posted on Sunday, 11 July 2010 09:42

I wanted to thank you for this wonderful examine!! I positively enjoying each and every little small bit of it Smile I've you bookmarked to verify out new stuff you post.

Londa Thome

Posted on Sunday, 11 July 2010 09:42

Thank you for taking the time to write this brilliant post. I'll make sure to share this with my good friends. Thank you!

multiple monitor stand

Posted on Sunday, 11 July 2010 15:30

Gonna try out your script, it may come very hand on my next project

car hire rome airport

Posted on Monday, 12 July 2010 03:03

Many thank you again for providing superb content yet once once once again. Your posts are really so great and really inspiring I was looking for that solution nearly all day!I love your blog,awesome!!!

black eyeliner

Posted on Monday, 12 July 2010 10:16

Awesome script! Looking forward to using it.

Ear Defenders

Posted on Monday, 12 July 2010 18:21

Bizarre... I just stumbled on your website by looking for 'financial spreadbetting' on Yahoo. But I haven't found any articles about that subject on here?

iphone 4 cases

Posted on Monday, 12 July 2010 20:41

<script type="text/javascript">  
  
$(function() {  

$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel  

$('#gallery a').lightBox(); // Select all links in object with gallery ID  
  
$('a.lightbox').lightBox(); // Select all links with lightbox class  
  
$('a').lightBox(); // Select all links in the page  



</script>  

I think I got error for this top, I've triple re-written it, can you help?

Herschel Hodapp

Posted on Tuesday, 13 July 2010 00:23

I came across this topic on another website and couldn't fully see the implications, but your article is much clearer. Thanks!

small vegetable garden plans

Posted on Tuesday, 13 July 2010 01:31

Hi! I saw your blog at Google and have learned a lot from it. Thank you very much for the useful and detailed posts. Will be coming back soon.

SIPPs

Posted on Tuesday, 13 July 2010 07:22

I was searching for info about this on Bing and found your item. I found it to be nice and clear. Thanks

Carol Servulo

Posted on Tuesday, 13 July 2010 14:45

I just love to comment on that website,
i'm glad to see green stuff in san mateo area,
and i'm going to offer to all my friends in san francisco
most it's cleaning business,

thanks,

Homemade Playdough

Posted on Tuesday, 13 July 2010 16:40

Thanks for the lightbox tips! Very handy!

V8 Drive

Posted on Tuesday, 13 July 2010 21:18

Great tips, i'll try it on my WP blog!
Thank man

Sunny Shoreo

Posted on Tuesday, 13 July 2010 21:19

Very clear article. You made it very simple and for that I thank you !

Demo Forex

Posted on Wednesday, 14 July 2010 01:39

I read a similar article on a different site and couldn't get the gist of it, but this article is much clearer. Appreciate it!

Best Website Reviews

Posted on Wednesday, 14 July 2010 05:53

I was reading through a few of the articles right here and i think everyone offer excellent info as well as I needed to depart just a little comment to support you as well as wish you a good extension.

novoline

Posted on Wednesday, 14 July 2010 08:56

whooooah these bonuses ROCK

cast urethane

Posted on Wednesday, 14 July 2010 10:34

Nice information, many thanks to the author! It is good and correct. The usefulness and importance is overwhelming. Thanks again for this very informative post and good luck!

Gaylord Louderback

Posted on Wednesday, 14 July 2010 13:27

Fascinating post, thanks. Could you expand on the third paragraph in more detail please?

Submit Portal

Posted on Wednesday, 14 July 2010 13:42

thanks, I'm very glad I could get more knowledge from here, articles and info-good info,
made me grow even more success always to you ..

Builders in Derbyshire

Posted on Thursday, 15 July 2010 07:24

Excellent lightbox, really like the rounded corners

Columbus DJ

Posted on Thursday, 15 July 2010 14:15

Wow... excellent explanation of light box and how it works... very impressive... thanks!

FelicityDiscounts

Posted on Friday, 16 July 2010 10:35

Beautiful imagery, I love this it is most good for an excellent day, sets you up well good images.

Software Factory

Posted on Friday, 16 July 2010 15:59

Lightbox is nice - especially nice that it based on jquery which is based on javascript and so can be run on windows and linux servers.

chicago fsbo

Posted on Sunday, 18 July 2010 07:52

Hello,

I wanted to say that I have been reading for a few days and I would like to sign up for the rss feed. Regrettably, I am not to computer smart so I'll give it a try but I will need some help. This is a good find and I would hate to lose contact, and maybe never find it again.

Anyway, thanks again and I look forward to posting again sometime!

amateur cam chat

Posted on Sunday, 18 July 2010 16:33

This one looks classy, and has just enough features to make it useful but unobtrusive. Thank you for sharing this.

Best laptops under $500

Posted on Sunday, 18 July 2010 22:23

I used to have a blog on this subject, but it got spammed so bad I had to close it. You seem to be better at weeding out the spam! Kudos!

teak garden furniture manufacturer

Posted on Sunday, 18 July 2010 22:41

thanks for tutorial. thanks for this usefull article, waiting for this article like this again.

i have one <a href="www.outdoorfurniturewholesale.com">teak garden furniture manufacturer </a>site that you might be interested to visit. thank you very much.

thanks for this usefull article, waiting for this article like this again.

Lyrics Lover

Posted on Sunday, 18 July 2010 22:59

Good article, new knowledge for me and very useful.

Pamelia Bellows

Posted on Monday, 19 July 2010 16:28

This is one of very few blogs that was worth the read, thank you for sharing such informative posts, Cheers.

7 day diet

Posted on Tuesday, 20 July 2010 09:50

Hi! I saw your blog at Google and have learned a lot from it. Thank you very much for the useful and detailed posts. Will be coming back soon.

Snow Cone Syrup

Posted on Tuesday, 20 July 2010 10:22

Just happened upon your post and definitely will check out additional ones. Seems like real great stuff.

Columbus Wedding Photographers

Posted on Tuesday, 20 July 2010 23:18

Excellent article... really explains the lightbox like I've never understood before!  Thank you!

pisang

Posted on Wednesday, 21 July 2010 00:23

thanks to sharing information about your blog.<A HREF="http://www.newstaiment.com/">News Entertainment</A>

Russian Girl

Posted on Wednesday, 21 July 2010 12:39

Wow! NotesForLightBox is amazing and your explanations are very useful. Thanks for sharing.

Magnet Motor

Posted on Wednesday, 21 July 2010 17:30

I just like your blog, very informative

Ooty

Posted on Thursday, 22 July 2010 04:00

You have all inspired me to focus on providing more informative and resource type link building posts in the future, so stay tuned for more soon.

Eduction

Posted on Thursday, 22 July 2010 05:48

Thanks for providing the informatin...

Dairy Equipment

Posted on Thursday, 22 July 2010 08:33

Great information and facts, many thanks to the article author. It is puzzling to me right now, however in general, the efficacy and relevance is overpowering. Really much thanks again and best of luck!

Emergency Vehicle Lights

Posted on Thursday, 22 July 2010 09:51

I like this site. Really useful and very motivational. Thanks a lot. This will help me a lot.

Vernetta Mccarrell

Posted on Thursday, 22 July 2010 16:10

go figure lol|Smile}

Blog Literature

Posted on Thursday, 22 July 2010 16:41

Its really a very detailed post. I have learn various new things from your blog. I hope you 'll share some more useful info with us.

lose weight fast and safe

Posted on Thursday, 22 July 2010 19:13

Good stuff, congrats on the site.

Bharti Digital

Posted on Saturday, 24 July 2010 04:41

Will try this out. Are they compatible with all browsers?

buy cheap traffic

Posted on Saturday, 24 July 2010 05:15

Good stuff gonna try it out right now !

Ooty

Posted on Saturday, 24 July 2010 06:15

You have all inspired me to focus on providing more informative and resource type link building posts in the future, so stay tuned for more soon.

Info Prodigy

Posted on Saturday, 24 July 2010 06:33

Thanks for this great tutorial

Toronto Condo Staging

Posted on Saturday, 24 July 2010 13:55

I am using images 1200 pixels tall and I am ok with them extending beyond current view and requiring vertical scrolling since a user will only click when they want to see a very detailed view..

Tips Weight Loss

Posted on Saturday, 24 July 2010 18:08

There are many subject standards that I want to tell you here:   1. Critical topic   2. Hot topic that consists of several positive and negative effects   3. Main results after this topic end   4. Must create solving-problem side and technical effects   5. Create quick summarize that give reader a time for making future research. Thanks for giving me opportunities in commenting your site, especially if you want to give summary point for that. Nice time to see you.

network drivers

Posted on Saturday, 24 July 2010 23:07

Thanks for this great tutorial

Anna

Posted on Sunday, 25 July 2010 07:09

i would agree... noteforlightbox is really easy... especially for someone like me who is just a beginner at this

<a href="http://movievie.com">Anna</a>  

KooziesReview

Posted on Sunday, 25 July 2010 11:13

Thanks for sharing,this is so informative.

3d PC

Posted on Sunday, 25 July 2010 11:24

Hi * wonderful website, simply looking all-around some weblogs, appears your quite great program you will be working with. I am just currently employing Squidoo for three involving my websites however aiming to switch one over to a program similar to your own property like a trial function. Topic you'd probably highly recommend regarding it?

loan modification attorney Florida

Posted on Sunday, 25 July 2010 16:32

I would definitely agree with using Notes for Light Box

Sebastian Hair Products

Posted on Monday, 26 July 2010 04:41

Thanks a lot for script, since I am a web designer, is is very useful to me.

Travel Purses

Posted on Monday, 26 July 2010 04:52

Very useful information for web masters who are involved n web designing. Thanks a lot

Stoica

Posted on Monday, 26 July 2010 09:16

I have a page with a iframe in center. In the iframe I load some images. When I click on a image, it is load inside of iframe. But I want to be load on all the page, not only in iframe. I put <a href=".." target="_self"> but it's load only in iframe.

Hosting

Posted on Monday, 26 July 2010 15:57

It's a very exciting article. I like it so! Thanks

flex Belt

Posted on Monday, 26 July 2010 18:25

Unsuccessful idea

Roberto Spanier

Posted on Tuesday, 27 July 2010 04:03

thanx jquery

Melia Mearing

Posted on Tuesday, 27 July 2010 04:04

I was wondering what's up with that creepy gravatar??? I know 5am is early and I'm not looking my top at that hr, but I hope I do not appear to be this! I'd however make that face if I'm asked to complete a hundred pushups. :-|Smile}

Torrent downloads

Posted on Tuesday, 27 July 2010 04:34

ts really a very detailed post. I have learn various new things from your blog. I hope you 'll share some more useful info with us.

Laurence Loach

Posted on Tuesday, 27 July 2010 18:41

If he does, neither of you own this place, it could be like me moving into a new house with a pal and saying that I get to plan everything. If the furniture there may be already yours and whatnot, I see a few of the factors, but when he is paying rent, yea, he ought to get a say.

Tarpauline Hire

Posted on Wednesday, 28 July 2010 01:41

Awesome website! A mate told me about your site, he also writes these..

news infolicious

Posted on Wednesday, 28 July 2010 02:52

Woww that's very cool dude, i download. So many thank's for the great idea.

www.YourKefirSource.com

Posted on Wednesday, 28 July 2010 10:27

It works on Google Chrome.

Workplace Accidents videos

Posted on Wednesday, 28 July 2010 11:48

Excellent post !visit your blog today You make some brilliant points you have nicely covered this topic.keep it up

Belenda Titus

Posted on Thursday, 29 July 2010 08:48

I like the posted picture background, hopefully there are more updates to come with the same updated features. <a href="www.e-yeastinfections.com/.../"> treatment for yeast infection</a>

Matthew Ding

Posted on Thursday, 29 July 2010 16:06

Just wanted to grant you a shout from the valley of the sunlight, skillful information. Much appreciated.

learn spanish quickly

Posted on Thursday, 29 July 2010 21:30

Thanks for the scripts! Those images in the example in the live demo are quite nice, except those few that already come with most windows installations. I suppose their royalty free right? Anyway, thanks again.

Add comment




  Country flag

biuquote
Loading