Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I've never seen it before, but I reckon it can be done.
I'm making an application right now, and I use a prompt in javascript to get the requried data, like
description = prompt ("insert your description here, please");
Now, we want to be able to retrieve a date from a datepicker inside this prompt.
So, prompt comes up, asks for a description, you fill in your description, click ok, and then another prompt box comes up with a datepicker. That's the idea, but it seems impossible to achieve.
Can someone guide me to the right direction?
It looks like a modal dialog would be more appropriate than a form:
http://jqueryui.com/dialog/#modal-form
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 9 years ago.
Improve this question
I want to achieve something similar to this page https://www.quantopian.com/algorithms. If you click on the Guided Tour button on the right top corner, you will see what I mean. Can anyone point me to some tutorial or ideas how to implement this?
To be specific in case the site is down. I want some kind of step by step pop up message box that guides the first-time user to get familiar with the app. While the popup is shown, the rest of the app should be disabled, and the only button the user can click on is the next step or close button on the message box.
UPDATE:
There seem to be way more javascript libraries than I expected. This one from Linkedin seems to be well maintained on github: https://github.com/LinkedInAttic/hopscotch.
This looks like what you are looking for - Tourist
I think this is exactly what you are looking for it: May even be made with this on your demo example site.
clu3.github.io/bootstro.js/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Before I had chosen.js I could find the specific option, remove it, and then create a new option instead, giving it the same value as it the deleted option has...
Now it doesn't work... the select itself changes - but it is hidden when using chosen.js...
And what was supposed to be a simple task is not simple at all!
Can someone help me?
Thanks!
Use $("#your_field").trigger("chosen:updated"); after updating select options.
Just as is written in reference: http://harvesthq.github.io/chosen/#change-update-events
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
Is there anyway to open jquery dialog behind the current page or minimize it?
I tried window.focus() but didn't help.
There is nothing special about a jQuery dialog as far as the browser is concerned - it's just HTML with styling and some JavaScript running the show. As such, there is no "special" way to present one in a separate window.
To do what you want, you'll need to create a popup the normal way (e.g. window.open) that points to a page which produces a jQuery dialog.
However, you're not going to get a standalone jQuery Dialog floating in space - it'll be a browser window with the usual toolbars, status bars, close button, etc.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to add two products to comparison queue like on this site (http://www.phonearena.com/phones/manufacturers/Samsung) Here if you hover on a mobile phone and click on 'compare+' it add to a java-script or browser session and if you open another page and click on next any mobile 'compare+' button, it adds up to the comparison queue, which you can later use to compare two mobiles.
I want to know what should I do, to achieve this functionality. My web app is being developed in MVC3 and I want to compare two of my products this way.
Please I just need some help how to figure this out.
Thanks
Here is how you would use cookies:
document.cookie = "mobile1=" + mobile1;
and then you can retrieve it like so:
mobile1 = document.cookie
Give
http://plugins.jquery.com/cookie/
a try. Something like:
if ($.cookie("choices"))
{
// have previous choice, so handle comparison display and reset state
// ...
$.removeCookie("choices");
}
else
{
$.cookie("choices", "key of first product");
}
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm looking for a small and lightweight way to get the screenshot of a website with just the URL. I've heard you can do this with XML/PHP, or even use another service to return the image. However, is there a fast simple way to do this? Preferably in Js? Also, to clarify, my project is going to be dynamically generating these thumbnails.
You can't do this with html/php alone. You need a browser to interpret the content on the page and get a screenshot. Some sort of software. OR use a 3party service
http://www.browserstack.com/screenshots/api looks good, I haven't tried them though