Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I knew that it is not possible to change title or style of browser confirm box
How do I use jquery confirm box and supress default confirm box?
can anyone give me link here.
thanks
Check Out These jquery confirm box Plugins...
http://jquery-plugins.net/tag/confirm-box
Due to the synchronous nature of the browser's alert boxes, there is no 100% drop-in replacement, however
http://fabien-d.github.io/alertify.js/0.4.0rc1/
is a nice replacement that makes minimal coding changes to use.
For example, you can use this library: http://nakupanda.github.io/bootstrap3-dialog/ (try to search "Confirm" on the page). It's giva ability to write like BootstrapDialog.confirm('Hi Apple, are you sure?');
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I would like to implement auto suggestion feature just like browser search field works.
It don't want to select from the auto complete drop down list. The suggestion should be in the field it self and on clicking right arrow or tab the word/sentence should be completed in the field.
Can any body help me on this.
Thanks in Advance.
If you want a quick solution, I can recommend the following libraries. Both of the libraries below will meet your requirements of autocompleting the input by pressing tab.
Do take note that you will have to configure your server-side and front-end logic to pre-fetch/lazy-fetch the data that is to be supplied as the source for the autocomplete.
1) Suggest - 'enter' or 'tab' to accept the autocomplete suggestion.
2) Typeaheard - A more popular alternative. You can use tab to autocomplete too. However, this comes with a dropdown list, but you can do some DOM manipulation with JavaScript/Jquery and hide the dropdownlist.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
What I'm struggling to find a way to achieve is a way to auto complete the input itself while users type.
As an image worth more than a thousand words I'm basically looking to replicate the same behaviour that you can experience in the city search input of Airbnb
Image to see the input in action
Does anyone have an idea of how I can make an input that have a similar behaviour ?
PS : I'm not looking for a code implementation, just hints about how do you think this can be achieved
I think what you are looking at is called as typeahead. You can use Twitter's typeahead. There are plethora of tutorials, documentation and code snippets available for typeahaed implementation. Here is an example of twitter's typeahead.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
First poster here, but I wanted to know if there was anyway that it was possible to customize the JavaScript prompt boxes without using jQuery? I'm wanting to keep my site vanilla as possible. Thanks.
You can create your own modal dialog boxes. However you cannot customize how, for example, window.alert("Hello!") would look. That is completely up to the browser manufacturer.
create a 'div' and show that using an event.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I would need to use a little textbox in order to write in and to get the value but without creating a window. (In which I would have created a textbox element)
I would need something like the alert box but I would like to write in.
Do you know what I could use ?
To get an dialog box with input using javascript you can use window.prompt, look for more info here.
If you want something prettier go for a modal window. There are plenty plugins for jQuery (and there should be enough scripts available in vanilla JS as well) to achieve this.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
i need a green color confirm box along with yes no button instead of ok/cancel . Can u please suggest how i can achieve this.. if there is an alternative please give me the code for it including the css and jquery, javascript files needed to run it. I am a novice in web field so your help will be highly appreciated..thanks.
Here is a jQuery Plugin Confirm Box: jDialog. You can basically skin it the way you like with CSS. Or, you can use jQuery UI's modal box
You can check out here
it's really easy to be done!