[jQuery] Popup

2010-02-10 Thread dtirer
I'm using the following JQuery Popup code to make smooth popups:
(http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth-
popup-using-jquery/)

I was wondering how I can use use this to load external pages into the
popup?

So instead of having a hidden div in the page, there would be some
sort of empty div (div id='this'/div).  The when I click a link,
an external page would be loaded into this empty div.

So it would function just as it does in the above tutorial, expect the
popup content would be coming from an another page, not within the
page.


Re: [jQuery] Popup

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 11:56 AM, dtirer dti...@gmail.com wrote:
 I'm using the following JQuery Popup code to make smooth popups:
 (http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth-
 popup-using-jquery/)

 I was wondering how I can use use this to load external pages into the
 popup?

This tutorial should prove helpful:

http://pixeline.be/blog/2008/javascript-loading-external-urls-in-jqmodal-jquery-plugin/

If you don't want to use an iframe I believe you'll have to send the
request to your own server and have it fetch the external page you
want to load since most browsers don't allow XSS. If you're going to
do that, though, be careful!

http://www.owasp.org/index.php/XSS

Nathan


[jQuery] popup form

2010-02-05 Thread Oguz Yarimtepe

At my web application i am using jquery for updating some div areas. I also 
need to update some tables which are produced after executing some queries at 
my db. So i am planning to open a popup form that will show the current values 
of the row that is shown at the table. Changing and submiting will effect the 
db also. 

May i do it with Jquery or do you suggest anyother library that is written over 
jquery? And how can i do it? Will be happy if you show the road. 

If it is possible to do it with jquery, i prefer to do it with it.

-- 
Oguz Yarimtepe oguzyarimt...@gmail.com


Re: [jQuery] popup form

2010-02-05 Thread Nathan Klatt
On Fri, Feb 5, 2010 at 3:51 AM, Oguz Yarimtepe oguzyarimt...@gmail.com wrote:
 At my web application i am using jquery for updating some div areas. I also 
 need
 to update some tables which are produced after executing some queries at my
 db. So i am planning to open a popup form that will show the current values of
 the row that is shown at the table. Changing and submiting will effect the db 
 also.

We regularly use Flexigrid, jqModal, and the jQuery Form plugin for
this purpose.

http://www.flexigrid.info/
http://dev.iceburg.net/jquery/jqModal/
http://jquery.malsup.com/form/

The author of Flexigrid hangs out on
http://groups.google.com/group/flexigrid so that's a good resource for
questions.

Nathan


Re: [jQuery] popup form

2010-02-05 Thread stworthy

Perhaps here has some plugins you need: datagrid,window,etc.
http://jquery-easyui.wikidot.com/



Oguz Yarimtepe wrote:
 
 
 At my web application i am using jquery for updating some div areas. I
 also need to update some tables which are produced after executing some
 queries at my db. So i am planning to open a popup form that will show the
 current values of the row that is shown at the table. Changing and
 submiting will effect the db also. 
 
 May i do it with Jquery or do you suggest anyother library that is written
 over jquery? And how can i do it? Will be happy if you show the road. 
 
 If it is possible to do it with jquery, i prefer to do it with it.
 
 -- 
 Oguz Yarimtepe oguzyarimt...@gmail.com
 
 

-- 
View this message in context: 
http://old.nabble.com/popup-form-tp27465612s27240p27477443.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] popup form(please help me)

2009-05-31 Thread hamed7

 i want create one form for add catagory to database with php and
jquery.
when i click on one link,ex:add new catagory, show this form and
when user add new catagory, some select menu refrash and show new
item,and in this form user can edit catagory title also.

i am new in jquery,please send your full source code and explain step
by step.


[jQuery] Popup window after file upload in firefox and ie

2009-05-07 Thread csetzkorn

Hi,

I am using this code:

var options =
{
url: '../Account/Upload',
type: 'POST',
contentType: 'multipart/form-data',
dataType: text,
error: function(XMLHttpRequest, textStatus,
errorThrown) {
...
},
success: function(data) {
...
},
beforeSend: function() {
...
},
semantic: false
};

// bind form using 'ajaxForm'
$('#item_form').ajaxForm(options);

to upload files to the server, which works fine. I am using the forms
plugin and the multifile upload plugin. I believe that the former
plugin uses the 'iframe approach' to allow file upload. Unfortunately,
I get file download popups in my browsers (tried firefox and IE) after
the upload. For example, firefox's popup is You have chosen to
open  I believe this has to do with the iframe stuff. Is there a
way to avoid these pop ups?

Thanks.

Best wishes,

Christian


[jQuery] Popup going under flash object

2009-01-22 Thread ptmurphy

I have a web page I have been working on and everything looks good in
IE.  However, in Firefox I am having a problem with the datepicker
popup window going under a flash object that is below the input field
on the page.

The datepicker.css file (this is the only css file I am using in this
application) sets the z-index to  (which is much higher than
anything else on the page, and I have set it to as high as 1000
just to check).  I have tried to set the input field to an extremely
high z-index, as well as setting the z-index of the flash div to -1.

Nothing seems to help in Firefox, but IE does everything correctly,
putting the datepicker popup over the flash object.

Has anyone run into anything similar and can offer some suggestions?

Thanks for any help or suggestions...

PTM


[jQuery] popup content

2008-09-23 Thread cecil

Hello ... i am fairly new to jquery. i was wondering if anyone knew of
a way i could emulate the functionality of the popup control of the
asp.net ajax control toolkit. i want to display a list of check box
items when an input text field is in focus.
thank you in advance

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/PopupControl/PopupControl.aspx


[jQuery] popup, When dragged and closed, return to original position when poped up again

2008-07-15 Thread Adar

looking for a plogin that should able to drag  a element when poped
up!
and when clicked again to open the popup it should not open where it
was dragged to!


[jQuery] Popup window

2008-04-10 Thread Paul Collins

Hi all,

I have been searching for some code to create a popup using JQuery.
Surprisingly, I am having a hard time. I want to create one where you
can specify size and not have the standard search bar, etc.

Would appreciate any help.
Cheers
Paul


[jQuery] Re: Need help picking a Jquery Popup plugin

2008-03-06 Thread Chris Jordan
check out jQueryUI. I've been very happy with the dialog boxes it produces.

Cheers!
Chris

On Thu, Mar 6, 2008 at 1:26 PM, prakash123 [EMAIL PROTECTED] wrote:


 Hello

 I have  a list of links in  a page, i want the end user to click the
 link and read the content in a popup window. (not the greybox types,
 that basically lock the whole page). I need some clean unobstrusive
 popups.

 Can some one guide me to good popups in jquery?

 Thanks

 Prakash




-- 
http://cjordan.us


[jQuery] popup div

2007-09-10 Thread james_027

Hi,

I am trying to make a simple div that will pop which will be close
by just clicking to any part of the page. I have no idea of how to do
this. I have try something like this

$(document).click(function(e){
$('[EMAIL PROTECTED]').hide();
});


$(body).click(function(e){
$('[EMAIL PROTECTED]').hide();
});

but all my other click function on specific html tag won't work
anymore, it seems to be overide.

Thanks
james



[jQuery] Popup information box, like a tool tip.

2007-08-12 Thread [EMAIL PROTECTED]

Hi

I'm stating to get into jQuery and need to create a popup box like the
one on this site when moving over the with voucher link.
http://www.dealpond.com/browse/id=462177/Samsung-LE40M87BDX

It is like some of the other tooltip plugin I have seem but it needs
to stay open when moving over the content, and close when moving off
the link or box.

What is the best way to create this effect?

Cheers
Graham



[jQuery] jQuery :: Popup Div

2007-05-04 Thread David


Hi All,

I'm desperately trying to get all of our team to standardise on jQuery 
and dump the mixture of other frameworks we have used (prototype, 
scriptaculous,  dojo, etc). So...


I'm looking for the jquery equivalent of this:
http://simile.mit.edu/timeline/

Click on a link in the Timeline and you should get a popup div... Can`t 
find any jQuery examples, any body know of one.


Regards,

David


[jQuery] Re: jQuery :: Popup Div

2007-05-04 Thread Rey Bango


David,

Here are a couple of options:

http://dev.iceburg.net/jquery/jqModal/
http://www.codylindley.com/blogstuff/js/jtip/

Rey

David wrote:


Hi All,

I'm desperately trying to get all of our team to standardise on jQuery 
and dump the mixture of other frameworks we have used (prototype, 
scriptaculous,  dojo, etc). So...


I'm looking for the jquery equivalent of this:
http://simile.mit.edu/timeline/

Click on a link in the Timeline and you should get a popup div... Can`t 
find any jQuery examples, any body know of one.


Regards,

David



--
BrightLight Development, LLC.
954-775- (o)
954-600-2726 (c)
[EMAIL PROTECTED]
http://www.iambright.com