here's what I currently have, unfortunately I cannot seem to figure out how to get autoFill to work with jQuery-UI... It used to work with the straight up Autocomplete.js
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery...
I would like to develop a site using jQuery that will work with all major browsers. I thought to start with a basic layout (a header, a couple of tabs with content, and footer). I wonder how should I create this layout to support different screen resolution, screen size, or window size. Should I work in pixels / points / percents when de...
Hello,
How to close jQuery Dialog within the dialog without using the close button?
Inside the ui dialog is a simply form request and if a successful submission occurs, then the ui dialog automatically closes and refreshes the parent page.
<script type="text/javascript">
$(document).ready(function () {
$("#form...
I have an application creating a bunch of divs through a loop.
Each div has the class "product"
so it looks like
<div class="product">
!.....stuff here ....!
<div class="show_on_hover">...buttons here... </div>
</div>
so there are about 12 of these same divs per page.
I would like to hover over a specific one and sho...
Hi
I am using jquery validate and the jquery version of tinymce.
I found this piece of code that makes tinymce to validate itself every time something changes in it.
Hi
I am using the jquery validate with my jquery tinymce so I have this in my code
// update validation status on change
onchange_callback: function (editor)
...
Hi,
I would like to check if my paragraph tag is empty using Jquery. Meaning without content.
$(function() {
$("#popupdialog").dialog();
});
HTML
<div id="popupdialog">
<p></p> </div>
Separate Instants.
<div id="popupdialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The ...
Related to my previous question, I have a <div style="position: fixed;"> footer. The footer contains <a style="display: block; float: left;"> elements. Upon clicking one of these links I want a div to popup above that link. I am experimenting with a couple of CSS settings and got acceptable results but I am not sure if my CSS will work a...
Trying to set a select dropdown with a slider. You move the jquery ui slider and then it will change the selection of the other two dropdowns.
is there a current method in jquery that would set these options?
Current dropdown:
<select id="alert-options-frequency-opts">
<option value=""></op...
I have a Web Application and I want to get a confirmation from users when they are closing the application no matter what.
I mean I'm looking for a way to display a message touser whenever user try to close the application.
Update : I want to use my dialog box not browsers dialogbox. r at least a dialogbox which only shows my messa...
hello,
i have the below sample code for a navigation list:
<div id="menu">
<ul>
<li><a href="#sect1">link 1</a></li>
<li><a href="#sect2">link 2</a></li>
<li><a href="#sect3">link 3</a></li>
</ul>
</div>
and some jquery code:
$("#menu li").click(function () {
var mylicontent=$(this).html();
});
i want to get both html conte...
Not sure what causes this?
If I user slideDown in Firefox the text rendering cuts off the top of the letters before the animation is complete. This is ok in IE.
If I then change the animation to use fadeIn instead, the blur does not happen in Firefox but the text is very jagged in IE.
From another question I have asked in the past pe...
Please check out the comment field at the bottom
on http://tinyurl.com/3xow97t
in Firefox - it works pretty well - the red warning gets added if empty
and the submit gets disabled - once there is text inside, the submit gets re-enabled.
the problem i have now, it does not work in IE.
i really hope somebody can help.
the iframe conte...
Hello everyone at SO!
Can somebody tell me how to display an alert when containment limits are reached?
Thanks in advance.
...
I have a page in which there are multiple hrefs. i want to find out which href is clicked and based on that href click i want to show and hide a div?
...
I'm making an ajax site. How would I go about executing some javascript every time the url changes. Say when "/#page/aboutus/" changes to "/#page/news/".
I want users to be able to bookmark ajax-pages.
...
i start learning jquery few days ago, and i like it very much. but now i have a problem, that can't solve alone.
i have two selects
<select id="select1">
<option value="1">1day</option>
<option value="2">2day</option>
<option value="3">3day</option>
</select>
<select id="select2">
<option value="1">1day</option>
<option valu...
Hi,
I want to access a simple button in an unknown nested level of a container.
Using container.children('button') allows me to access buttons in the first level, i.e.:
<div>
<button>test</button>
</div>
Trying to use the same with the following construct:
<div>
<div>
<button>test</button>
</div>
</div>
.. fails, because the...
There's a button in Flash which looks something like a jQuery SplitButton. The Flash button consists of two parts, the text and the icon.
[text portion] [v]
I have used it to display string search operators for the user: equals, starts with, ends with, contains. In Flash, when the icon is clicked, the text-area drops down a list of...
Hi,
i am using Jquery UI tabs , to trigger show event i use following statement
$tabs.tabs('select',1);
after this code executes a tab is set to #tabs-1 but i am failed to re trigger the same event on same tab when #tabs-1 is already shown. so how to re-trigger the same tab event.
...
I have an arbitrarily deep list, like so:
<ul>
<li></li>
<li>
<ul>
<li></li>
<li>
<ul>
<li></li>
<li></li>
</ul>
</li>
</ul>
</li>
Using jQuery, how can I select every li in the list that is not a leaf node. In other words, I want to select all of the li elements that have children ULs.
Th...