I want to create a popup method like its used on https://www.behance.net/ - when user click's on a project, a popup opens and the user can see the URL in the main window. How can I achieve that e.g. what must I do? Is it pure javascript? because it seems that behance is not using any plugin.
Thanks in advance
You can use Twitter bootstrap 3.0. Its providing modal popup and this one is mobile and ipad friendly as it automatically adjust with screen resolution.
Refer http://getbootstrap.com/2.3.2/
the easiest way to achieve this: use a plugin!
jQuery UI
Bootstrap Modal
choose your plugin
Related
Besides window.alert(),window.confirm() and window.prompt(), is it possible to create custom popup decision?
For example: When you write a comment on facebook and try to close the window, a popup appears and its buttons are Leave and Stay.
Yes, check out bootstrap modals
http://getbootstrap.com/javascript/#modals
There are other css frameworks and libraries that implement modals as well. Essentially these are just divs that have a higher z-index than the rest of the page with some buttons on them. Because of this they are completely customizable.
Hi I'm using meteor site http://www.telesc.pe and need help making the submit form link open in a pop window or javascript overlay vs a new page with a close button.
Any suggestions?
newtometeor
Thanks!
You should be able to use Bootstrap modals via the bootstrap-3 package.
meteor add mizzao:bootstrap-3
Then refer to the Boostrap documentation. Should be pretty easy.
I am using the wordpress plugin Easy Modal
I can open a modal like that Open Modal. Now I want to open the modal with javascript like that
if (var == true) { openmodal-11(); }
Is there a way I can do this, without looking at the plugin code? So I can "open" the class with javascript like fake clicking on the link.. I am kind of a newbe in coding...
Thank you
I found this page which suggets it's using a normal jQuery plugin approach to interacting with the page elements, and the below should work:
$('#eModal-11').emodal('open');
I am using this jQuery plugin http://jacklmoore.com/colorbox/ to show a popup window. There is a link in the content of the first popup clicking on which triggers another small popup window. I'd like to have this second popup without closing the first one. Is it possible to achieve this without changing much in the plugin?
There would be no way to do that without significantly altering the plugin. Sorry.
Assuming you have the chops, consider using ColorBox with the html parameter for the first popup window. In the HTML, develop your own window, eventing and handler (with Jquery). Just a thought.
I want to display 2 modal windows containing HTML content with jQuery.
But second modal window must be within the first.
So, here is main page, when I click link it opens first modal window, and then when I click a link in this modal window in opens second modal window.
I tried to do this with qTip, but I can't make second modal window.
I will be appreciate if somebody tells me how can I realize this. Thanks.
To me this sounds like an ui failure - modals within modals are not healthy for a user interface, and thus modal frameworks rarely support it.
If i was you I'd find another design rather than solve this problem programatically
I'd recommend the jQuery UI Modal Dialog, it should allow having two dialogs open at the same time.
qTip allows to open modal in modal.
Something is going wrong with your code.
Post it here and i can give you a solution!