22
Apr

JavaScript dialog boxes

I have put together a lightweight (~4.5kb) JavaScript dialog box library. The script currently offers four dialog styles: alerts, warnings, prompts and success. There is nothing to add to your page except references to the JavaScript and CSS if you choose not to incorporate them in your existing files. The Divs are dynamically added to the DOM when the function is called. The function currently relies on a content wrapper to calculate the page height however you could use the body height but the background overlay would only cover the currently visible content. The variable for the wrapper ID as well as the speed and timer settings are available at the top of the JavaScript file. Dialog boxes are generated as follows…

showDialog('Error','You have encountered an error.','error',2);

The first property is the title of the box, the second is the message, the third is the box style (alert, warning, prompt or success) and the fourth is an optional autohide timeout. Set the auto hide to the number of seconds you want to show the dialog before it fades out. The message can take HTML, just be sure and escape when necessary. The “look and feel” can easily be changed through the CSS and additional styles can easily be added by adding 2 lines of CSS.

The script is tested working in IE 6/7, Firefox 2/3, Opera and Safari. It functions in IE8 but not 100% correctly due to the lack of a the alpha(opacity=xx) property. Hopefully it will be added before it leaves beta.

Update 4/23/2008 - Added autohide feature, thanks for the suggestion Chris.
Update 4/23/2008 - Added dynamic vertical positioning, 1/3 way down the current viewable window.
Update 4/25/2008 - Resolved double click issue when closing.
Update 5/21/2008 - Resolved issue when clicking to close the dialog box before the fading animation completes.

View the demo.

Download the source.



3 Diggs Spread This

101 Responses


[...] Исходный текст(английский) [...]

Легкие диалоговые окна — Чернев.ру on 23 Apr 2008 at 6:58 am

Very good!!!
Thanks for sharing your work.

Christian Olivares on 23 Apr 2008 at 7:06 am

Very cool! Thanks!

I added a simple autohide parameter so it fades away without a click.

function showDlg(title,message,type,fadeout) {

if (fadeout)
window.setTimeout(”hideDialog()”, mdTimer + fadeout);
}

Chris Willis on 23 Apr 2008 at 7:29 am

@Chris - Thanks for the suggestion, I have added an autohide feature and dynamic vertical positioning this morning and update the source/demo accordingly.

Michael on 23 Apr 2008 at 8:32 am

well, I gonna test and see if it can compete with Thickbox (Redux) ;-)

cu, w0lf.

fwolf on 23 Apr 2008 at 11:24 am

I’ve added another type to it called Loading.

Works great for my gmap program on the initial page load..

if(autohide || type == ‘loading’)
{
dialogclose.style.visibility = “hidden”;
window.setTimeout(”hideDialog()”, (autohide * 1000));
}

But of course I have an issue with the rest of my ajax calls and pulling this up - or rather removing it.

EllisGL on 23 Apr 2008 at 3:07 pm

@EllisGL - Glad you are finding use for this. Shoot me an email if I can help you with your problems.

Michael on 23 Apr 2008 at 3:41 pm

[...] можете скачать эту библиотеку на сайте Майкла Лейгебера. Категория: JavaScript librariesАвтор: Spider Дата: 23 Апрель 2008 [...]

Настраиваемые окна на Javascript | АяксЛайн.ру on 23 Apr 2008 at 4:01 pm

[...] Encosia. Категория: AJAX, ASP.NETАвтор: Spider Дата: 23 Апрель 2008 Время: [...]

Особенности использования UpdatePanel | АяксЛайн.ру on 23 Apr 2008 at 4:04 pm

<strong>Custom JavaScript Dialog Boxes…</strong>

Custom JavaScript Dialog Boxes…

roScripts - Webmaster resources and websites on 23 Apr 2008 at 6:15 pm

Hi,
great work, however it doesn’t work if you have lightbox script on the same page.
I’ve been trying to get it to work, no luck so far.

Do you have an idea how to fix it?

Matt on 24 Apr 2008 at 3:45 am

@Matt - Are you getting a specific JavaScript error? Your best bet might be to namespace the entire script to avoid conflicts. If you send me a link I will take a look.

Michael on 24 Apr 2008 at 7:50 am

Very magnificent, thank you. But I find a problem, there isn’t choose button in dialog when type is ‘prompt’. It’s really a pity.

numenzq on 24 Apr 2008 at 10:05 pm

@numenzq - The content of the boxes is fully customizable and intentionally generic. To create selections simply build up the HTML and pass the string to the function. If you have any problems let me know.

Michael on 24 Apr 2008 at 10:12 pm

[...] to inform the users the status of the system. Leigeber has put together a lightweight (~4.5kb) JavaScript dialog box library. The script currently offers four dialog styles: alerts, warnings, prompts and [...]

Glamour’s Blog » Blog Archive » Custom Javascript Dialog Boxes with 4 Styles - 迷人的美.魔术般的魅力.这就是Glamour… on 25 Apr 2008 at 2:00 am

very good!thanks

volkan senturk on 25 Apr 2008 at 7:28 am

[...] http://www.leigeber.com/2008/04/custom-javascript-dialog-boxes/#comment-95 You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site. [...]

java script diolog boxs tasarımları güzel :) - Volkan Şentürk on 25 Apr 2008 at 7:30 am

thank you

komik on 25 Apr 2008 at 8:07 am

Just so you know, if you double or triple click the dialog’s close button it will break the script such that the next dialog box won’t appear again.

eyn on 25 Apr 2008 at 8:17 am

@eyn - Thanks for pointing that out. The issue has been resolved.

Michael on 25 Apr 2008 at 8:33 am

[...] Here you can look at lightweight (~4.5kb) JavaScript dialog box library. The script currently offers four dialog styles: alerts, warnings, prompts and success. There is nothing to add to your page except references to the JavaScript and CSS if you choose not to incorporate them in your existing files. [...]

CSS-FAQ » Blog Archive » JavaScript dialog box library on 25 Apr 2008 at 9:39 am

ever thought of translating it into a jQuery plugin? :-)

If you haven’t, pls give some thought on it.

Henry on 25 Apr 2008 at 9:55 am

This looks amazing, and I have wanted one of these for some time!! No more boring Javascript prompt for me! Plus requesting a password in a prompt without masking the password looked bad, you have saved my day! lol, Thanks for sharing this to everyone!

Fred on 25 Apr 2008 at 11:49 am

Very good!!

I just changed the:

dialogmask = document.createElement(’div’);

for:

dialogmask = document.createElement(’iframe’);

That way, the dialog stays over the selects…

Thanks for sharing!!

Juliano on 25 Apr 2008 at 12:44 pm

Very nice! Two tips…

1. You can change this code:

dialog.timer = setInterval(”fadeDialog(1)”, TIMER);
if(autohide) {
dialogclose.style.visibility = “hidden”;
window.setTimeout(”hideDialog()”, (autohide * 1000));
} else {
dialogclose.style.visibility = “visible”;
}

to:

dialog.timer = setInterval(”fadeDialog(1)”, TIMER);
dialogclose.style.visibility = “hidden”;
if(autohide) {
window.setTimeout(”hideDialog()”, (autohide * 1000));
}

2. You could save a bunch of code, and add more features, if it’s integrated with jQuery: http://jquery.com/

mark on 25 Apr 2008 at 8:25 pm

@mark - Thanks for the tips. As for the first suggestion the else statement is there for the instance that an autohide window is called and then one that is not autohidden. If the else is not present then the close button would not be visible on the second popup. As for jQuery I will definitely will port this to jQuery soon and publish some other neat jQuery scripts as well. I will continue to maintain this script independent of any other JS framework.

Michael on 25 Apr 2008 at 8:36 pm

found your site on del.icio.us today and really liked it.. i bookmarked it and will be back to check it out some more later ..

Jerry Galino on 26 Apr 2008 at 3:05 am

[...] Custom JavaScript Dialog Boxes - A JavaScript library for creating modal dialogs with JavaScript. Personally I prefer to use FaceBox, a useful jQuery plugin, but this is a good standalone solution. [...]

BlogBuzz April 26, 2008 | Webmaster-Source on 26 Apr 2008 at 4:01 am

@Michael: Ah, thanks for correcting me. I look forward to a jQuery version of this. Good luck!

mark on 26 Apr 2008 at 10:27 am

[...] Web Development Blog » Custom JavaScript Dialog Boxes (tags: javascript dialog popup) [...]

links for 2008-04-26 « toonz on 26 Apr 2008 at 5:33 pm

[...] duyar

Anonymous on 27 Apr 2008 at 6:46 am

Fantastic! I really love it! Thank you very much!

Edwin on 27 Apr 2008 at 7:07 am

[...] (~4.5kb) JavaScript dialog box library. The script currently offers four dialog styles: alerts, warnings, prompts and success. The script [...]

Custom JavaScript Dialog Boxes on 27 Apr 2008 at 8:24 am

[...] Custom JavaScript Dialog Boxes Related Stuff60 More AJAX- and Javascript Solutions For Professional CodingdfFlexiGrid - Liquid Javascript Grid LayoutMac OS X-Style Dock Menu in Javascriptjavascript carouselsSwedish fika » Creating a fading headerGalleria - a Javascript Image GalleryHow to highlight search results with JavaScript | Eric Wendelin [...]

» Custom JavaScript Dialog Boxes Webcreatives on 27 Apr 2008 at 11:00 am

verry good.too good :),perfect.Thanks.

@hmed on 28 Apr 2008 at 8:38 am

hmmm

demo is looking really good? Im planning to have those my self

thanks for letting this know!

web application developers on 28 Apr 2008 at 12:07 pm

Nice script. I liked it. I’ll try this on my next web application.

Rony on 28 Apr 2008 at 2:41 pm

[...] ) Custom JavaScript Dialog Boxes- A lightweight (~4.5kb) JavaScript dialog box library. The script currently offers four dialog [...]

Websites you shouldn’t have missed in April 2008 on 28 Apr 2008 at 6:06 pm

Hi, this is a much nicer looking than the brower prompts. I appreciate that the showDialog() accepts an html param so no doubt the following is possible, but can you give me a code example of using this to simulate the javascript prompt() function? i.e i need to retrieve a string value in return from showDialog() function. Thanks in advance :)

Paddy on 28 Apr 2008 at 7:05 pm

@Paddy - It would work a little differently than how the system dialog works unless you alter the backend JavaScript to directly return a value. You could easily do something like…

showDialog(’Confirmation’,'Are you sure you want to delete the entry?<br /><br /><a href=\’#\’ onclick=\’responseFunction(1); hideDialog()\’>yes</a>’ | <a href=\’#\’ onclick=\’responseFunction(0); hideDialog()\’>no</a>’,'prompt’);

This is a crude example but you get the drift… just call a response function (responseFunction) and pass it a flag (0 or 1) to tell it which option was clicked. Hopefully that answers your question. If not just shoot me an email.

Michael on 28 Apr 2008 at 7:29 pm

Hi, looks really pro.

How can I add an ‘OK’ button to any of these modal boxes, so that the box is dismissed when clicked?

Many thanks,

Gizmo

Gizmo on 29 Apr 2008 at 4:31 am

@Gizmo - You could easily do that using the method in my previous response or you could add a trigger in the backend JS based on the dialog type or for all of them that appended an “Ok” button to the innerHTML of the content area. The function that would need to be called to close it would be hideDialog(). If you need more assistance shoot me an email.

Michael on 29 Apr 2008 at 7:56 am

[...] Visita el artículo original de Michael Leigeber. [...]

Cuadros de alerta personalizados con JavaScript on 29 Apr 2008 at 10:28 am

[...] Lightbox ile özel diyalog kutuları oluşturmak. Bağlantı [...]

30 Nisan 2008 web’den seçme haberler » Tekil Yazı » Fatih Hayrioğlu'nun not defteri on 30 Apr 2008 at 1:13 am

Very very good work
From Italy, thank you.

bye

Emanuele on 30 Apr 2008 at 5:58 am

hello Michael,
thanks for the script. its very useful.

ilyas on 30 Apr 2008 at 8:40 pm

Beautiful dialogs, thanks a lot for share your work.

Greetings from México.

J.

OddJoe on 01 May 2008 at 4:09 am

[...] Custom JavaScript Dialog Boxes A lightweight (~4.5kb) JavaScript dialog box library. The script currently offers four dialog styles: alerts, warnings, prompts and success. [...]

Discover The Best Of The Web In April 2008 - Opensource, Free and Useful Online Resources for Designers and Developers on 01 May 2008 at 4:38 am

[...] Custom JavaScript Dialog Boxes A lightweight (~4.5kb) JavaScript dialog box library. The script currently offers four dialog styles: alerts, warnings, prompts and success. [...]

Discover The Best Of The Web In April 2008 - A Great Place for News, Articles & Free Web Resources on 01 May 2008 at 10:46 am

Is this released under an open source license ? If so, please include a license header.

jsguy on 03 May 2008 at 12:21 am

@jsguy - Absolutely, everything I have released so far is completely free for any use personal or commercial. I will include the license info in the future. Thanks for the feedback.

Michael on 03 May 2008 at 8:41 am

[...] Visita el artículo original de Michael Leigeber. [...]

Cuadros de alerta personalizados con JavaScript | Desen Web on 05 May 2008 at 3:09 am

Hi,

Just stumbeled over this, very nice :)

I’m working in a frameset and would like to integrade it with a login script.

My problem is that I can’t make it break out af the frame…

How can I solve this, plz write to my email.

Best regards

Mark J. Zweidorff on 08 May 2008 at 6:04 pm

Michael, great tool. There is one minor problem that i’m finding, although it is minor would be nice for a fix. It appears that calling hideDialog() is ignored if the dialog hasn’t finished opening. Why is this a problem, you may ask? I am opening the dialog with a yes/no prompt. Clicking yes or no both close the dialog, but yes performs a subsequent action after calling hideDialog(). But in the case of “yes” the action is performed without the window closing (if the dialog hasn’t fully faded in), it would need to be clicked on again, which would call the action twice. This is only a problem for example in the case of quick users who are familiar with the user prompts. Users have to wait for the dialog to fully fade in to click “no” for example, which could potentially be tedious having to click it a couple times, making the interaction not seem receptive.

If you’re not with me then let me know. Thanks :)

Paddy on 09 May 2008 at 5:28 pm

@Paddy - I will be out this evening but will get this resolved sometime tomorrow and an updated posted. Thanks for reporting the issue.

Michael on 09 May 2008 at 5:41 pm

[...] Custom JavaScript Dialog Boxes- Leigeber has put together a lightweight (~4.5kb) JavaScript dialog box library. The script [...]

Exceptional Ajax/javascript Techniques (Recently Created) on 12 May 2008 at 12:03 am

In IE on a Mac rather than poping up the dialogbox the screen just goes white. Any ideas? It works wonderfully, with a few tweaks to fit my needs, in all other browsers / OS I have tested it in.

Ty on 13 May 2008 at 2:45 pm

[...] JavaScript Dialog Boxes / Javascript [...]

Milestone 01 - 70+ High-End Components for Web Designers and Developers : DevKick Blog on 13 May 2008 at 2:53 pm

@Ty - Is it a beta version of IE? It might have to do with the alpha/opacity support for the browser. If you get me a browser version I will do some research try to get hold of a Mac to test. Thanks for reporting the issue.

Michael on 13 May 2008 at 3:08 pm

[...] Custom JavaScript Dialog Boxes- Leigeber has put together a lightweight (~4.5kb) JavaScript dialog box library. The script currently offers four dialog styles: alerts, warnings, prompts and success. [...]

30 recently created exceptional ajax javascript techniques on 14 May 2008 at 8:07 am

@Michael - It’s actually IE 5.2 for Mac (pretty much the last IE release for Mac as far as I’ve read). And I agree it probably has to do with the alpha/opacity.

Ty on 15 May 2008 at 3:45 pm

amazing!.. thx..

karakacan on 16 May 2008 at 1:13 am

[...] Demo | Download | Documentation [...]

{AJAX与Javascript}采长补短灵活应用 | 盒装大刀牌库存袈裟 on 16 May 2008 at 7:28 pm

Here Cristiano from Italy… Thenks a lot!!! It’s so usefull!!!!

Just a question: How can I modify window dimensions?

Thanks

Cristiano on 20 May 2008 at 2:43 am

Hi, i made a suggestion/request on 09 May 2008 at 5:28 pm, which you said you’d take a look at. Any progress or conclusions on this? :)

Paddy on 20 May 2008 at 6:04 am

@Cristiano - You simply need to change the width for the #dialog and the #dialog-header and the height for the #dialog-content in the CSS. Let me know if you run into any problems.

@Paddy - I am so sorry, by the end of the day I will update you. Thanks.

Michael on 20 May 2008 at 8:07 am

I am having a problem using the dialog on a form with select objects. The z-index issue in IE is causeing them to display above the dialog. I did follow the advice of one of the posts to change the dialogmask to an iframe instead of a div and I did that but it still shows the selects above the dialog. Do i need to do something with the CSS too?

Thanks,

Steve on 22 May 2008 at 10:19 am

@Steve - Ah yes, I had not considered the IE6 Select issue. You should be able to resolve it with the proper iFrame setup, although I am definately not a fan of iFrames. Otherwise I have seen elaborate JavaScript fixes out there but have yet to test any of them. I did a quick search on Google and found a couple non-js solutions that make sense and are fairly lightweight. Just shoot me an email if you need any help michael@leigeber.com.

Michael on 22 May 2008 at 10:41 am

Thank you so much for share you work, is really really good!!!!!!
Congratulations!!!

Carla on 31 May 2008 at 8:02 am

Great tool! Question: Our website is required to be flush with the top of the page (no gaps). By adding the div id=”content” just after the body and just before /body, we get a gap at the top of the page showing the background. How can we best implement your solution/tool covering the whole page but avoiding the gap?

Thanks!

David on 03 Jun 2008 at 12:28 pm

@David - You can remove the #content id style from the stylesheet. It is set at 20px for the demo. Shoot me an email if you have any more questions.

Michael on 03 Jun 2008 at 1:02 pm

Really impressive work! Only one noticeable oversight, no Information dialog. Any chance you’ll be adding gifs for something like that in the near future? Thanks!

Joves on 06 Jun 2008 at 10:57 am

Hi, thanks your hard work. I have added :
if(dialog.timer) clearInterval(dialog.timer);
at line 88 to avoid too many times show dialog if u had to.

sike on 11 Jun 2008 at 3:31 am

[...] simple Javascript, and then finally doing the same thing using the jQuery library. 演示 下载 6) Custom JavaScript Dialog Boxes- Leigeber has put together a lightweight (~4.5kb) JavaScript dialog box library. The script [...]

StarryNight » Blog Archive » 最新ajax特效30则 on 11 Jun 2008 at 7:29 pm

can any one email me
1) how to solve the code that can be use for confirmation
ok and cancel. my my form use ajax validation.
2)after user login and fail.. how to appear error dialog automatically if user fail ?? i try use alert(); but cant .
help me… im really noob to in javascript…

kvic on 12 Jun 2008 at 3:02 am

@kvic - Shoot me an email with a link to your demo and I will help you work through your issues. michael@leigeber.com

Michael on 12 Jun 2008 at 8:21 am

Great stuff!! keep up the good work. I’ll will visit often

warren on 14 Jun 2008 at 9:29 pm

gr8.. thankx for your css script.. its gr8 to have it…

regards
FEROZ

Mohd Shaik on 16 Jun 2008 at 9:18 am

It’s great but there’s a white border I can see which wouldn’t look that good if the body background-color way not white. The white border around the Dialog box would be seen and it would look like th message box is in another container. If it’s fixed, then it’s an amazing job.

And also there should be at least an Ok button.

You rock man.

Saj on 18 Jun 2008 at 3:40 am

Hi! Thanks for your work, its very helpful for me! I have a question, Im using your Custom JavaScripts Dialog boxes, but it doesnt accept images or tables on it, any suggestion?

Thanks!

Santiago Roque on 18 Jun 2008 at 5:58 am

@Santiago Roque - It should take any escaped HTML.

Michael on 18 Jun 2008 at 8:29 am

@Saj - You can easily remove the white with CSS. I just thought it looked better without the surroundings bumping up against it. Of course you could change the color or remove it. I purposefully left the content blank so you could have complete control over the formatting but since I have gotten so many requests I will include that functionality in my next release.

Michael on 18 Jun 2008 at 8:32 am

Thanks a bunch.

Saj on 19 Jun 2008 at 2:40 am

Excellent work ! Thank you !

I have a doubt
How can we add Yes no button in Confirmation dialog?

Manoj on 25 Jun 2008 at 11:59 pm

@Manoj - You can pass any HTML through the script to build the appropriate buttons or simply extend the javaScript for a native option including the buttons.

Michael on 26 Jun 2008 at 8:18 pm

Hi there, great script! Would you mind it if I modified it to be part of a namespace, and put it into my InterModule JSAPI javascript library? If you wanted to, I would also put credit to you if you want.

Great thanks,
Delan
creator of the InterModule SourceForge project
juggernaut0102@yahoo.com.au
sf.net/projects/intermodule
intermodule.sf.net

Delan on 28 Jun 2008 at 3:04 am

@Delan - Feel free to distribute any way you like. Credit would certainly be appreciated. Shoot me an email if you need anything.

Michael on 29 Jun 2008 at 6:26 pm

Hey Michael, I just noticed something.. try opening one of the dialog boxes(except error one) and then hold down the enter key for a while. Now try to close it. You won’t be able to. I am testing using Firefox 2.0.0.14. Is it again a browser issue?

Saj on 30 Jun 2008 at 8:07 am

@Saj - Yes, I see what you mean now but only if you press enter really fast. It doesn’t look like anything is being changed in the DOM by doing so… not really sure why that is happening.

Michael on 30 Jun 2008 at 6:18 pm

ARIGATO!!!!

Thks!!!

GRACIAS

RockXell -Carlos on 02 Jul 2008 at 3:41 pm

Hi,

I’m trying the dialog boxes but I cannot make it run as a confirmation window. After the window display I press any keys but nothing happens. Did I missed something.

Another questions how can I make an error window to redirect to another page when I close it. I’ve put a window.load after the call to the dialog box but then in that case the dialog box only shows for 1 second and it redirects.

Regards,
ALejandro.

Alejandro Barrere on 03 Jul 2008 at 10:06 am

Excellent dialog box! Very easy to use with elegant styling out-of-the-box.

To resolve the IE6 select box issue, I followed Juliano’s suggestion to use an IFRAME rather than DIV when creating the dialogMask. It works for me in IE6 and FF3.

One line change:

I just changed line 48:

dialogmask = document.createElement(’div’);

to:

dialogmask = document.createElement(’iframe’);

~~~
Change per Juliano on 25 Apr 2008 at 12:44 pm

AnonDeveloper on 04 Jul 2008 at 7:39 am

@Alejandro - I am a little confused by your first question. As for the window.location, that would need to be placed in the function that closes the window and not in the load function itself.

Michael on 04 Jul 2008 at 8:23 am

Thanks a lot!!!

Scott on 04 Jul 2008 at 11:32 am

Michael, thanks for your response.

The only problem I’m having with the dialogs is that if there’s any code after the call to the dialog boxes like a response.redirect (ASP) or window.load (java) the boxes won’t show at all it just redirects. Any solutions for that.

Thanks a lot
Alejandro.

Alejandro Barrere on 12 Jul 2008 at 2:25 am

You saved my life!

Lorenzo on 14 Jul 2008 at 10:36 am

@Alejandro - I am confused as to why you would want to redirect at the same time you called the boxes. Shoot me an email with your code an I will look into it.

Michael on 15 Jul 2008 at 6:34 pm

I want to add “yes” and “no” images to the content of the prompt and onclick do the delete and hideDialog(). But firat im unable to see the “yes”image. Then the delete and hidDialog is not working.

<a href=”javascript:showDialog(”,’<b>Are you sure you want to delete the entry?</b><br/> (This cannot be undone) <br/> <a href=\’{message.deleteURL}\’ onclick=\’responseFunction(1);hideDialog()\’><img src=\’yes1.png\’></a>’,'prompt’);”>
<img src=”images/contactconsole/delete.png” alt=”"/> </a>


I did not add the “No” button image yet. Want the “yes” button to work first.

Thanks very much.

jyothi

Jyothi on 16 Jul 2008 at 3:58 pm

jyothi - It looks like your first image tag is not closed. The hideDialog should work unless your responseFunction is throwing an error.

Michael on 17 Jul 2008 at 5:48 pm

Nope,

<a href=”javascript:showDialog(”,’<b>Are you sure you want to delete the entry?</b><br/> <a href=${message.deleteURL}><img src=’http://jyothi.xxx.com:8080/images/cc/yes1.png’/></a> <a href=cc.htm onclick=’responseFunction(0); hideDialog()’><img src=’no1.png’/></a>’,'prompt’);”>
<img src=”images/cc/delete.png” alt=”"/> </a>

I tried putting the images in the images/cc and also in the javascript folder… . Also tried giving the whole http address to the images, still cant see the yes and no images.
J

J on 18 Jul 2008 at 3:03 pm
Trackback URI | Comments RSS

Leave a Reply

Subscribe to RSS Feed
Powered by FeedBurner
Recent Links
Tag Cloud