The following simply loads a jquery-ui dialog from an external html file.
$('#showdialog').click(function(e) {
var div = $('<div>loading...</div>');
div.dialog({
modal: true,
open: function() { div.load('anotherpage.html'); }
});
e.preventDefault();
});
After the DOM loads from the external html file, ...
Struggling with Bing's json request (bing search, not map), I am getting an error back that says 'Invalid Label'
My query url is:
var bingurl="http://api.search.live.net/json.aspx?Appid=##APIKEY##&query=Honda&sources=web";
$.ajax({
type: "GET",
url: bingurl,
data: "{}",
content...
I am working on some ASP.NET web forms which involves some dynamic generation, and I need to add some onClick helpers on the client side. I have a basic outline of something working, except for one huge problem.
There are multiple HTML tables, each generated by a different ASP.NET web control. Each table can contain overlapping fiel...
Hi,
I'd like to monitor my textarea's changes with jQuery. I can do this with the keyup event and it works perfectly. But what event I can get when a user click on the textarea (right mouse click), then choose paste?
Click event occur only when the user click with the left mouse button on the textarea.
How can I handle this situation...
In general, resizable() works fine. Here is where I am getting into an issue.
I have a div that contains some resizable items that work fine (resizable() applied to them at some point).
user can save items for later view (the innerHTML of the div gets saved into a JavaScript array, then div gets cleared so they can do something else)
W...
Hello Overflowers!
Here's what's going on:
I'm building an app (using PHP, jQuery, etc), part of which lets users edit various bits of a web page (Header, Footer, Main Content, Sidebar) using CKEditor.
It's set up so that each editable bit has an "Edit Content" button in the upper right that, on click, launches an instance of CKEditor...
Hi. I'd like to create a jQuery image gallery of showcased products. It will show one product image at a time, with Next/Previous arrows, and a brief name and price as overlay on the image. If users click it, it will go to the order page. It will have an icon to show a larger, modal version (Lightbox style) of the image with full descrip...
Hey,
Is it possible to use jQuery on a new Window javascript object?
Example:
win = new Window('mywindow','width= 400', 'height=400');
win.getContent().innerHTML = xmlFindNodeContent(XmlHttp.responseXML, "windowHtml");
jQuery(win).ready(function(){
do jQuery stuff on the new window here??
});
Is something like this possible?
N...
there are 2 multiple select list on my page , one is there with a seperate remove button . selecting an item there in the selected list is removing the item from the first select list also.how will i specify which list to remove item from in this code
$().ready(function() {
$('#remove').click(function() {
return !$('#F...
I'm having a problem with JQGrid using ASP.NET MVC. I'm trying to follow this example (after you go to that link, over on the left side of the page please click Live Data Manipulation, then Edit Row), but my edit function is never getting called (i.e. it's never getting into the $("#bedata").click(function(). Does anyone know what could ...
ok what i am trying to do is to add something in the textbox and after pressing the add button it should go into the select list. how would i do that with jquery?
I am not really able to make it work by your method .Please help? What i am doing wrong
<%= Html.ListBox("FeatureLists", ViewData["FeatureListListBox"] as MultiSelectList)%>
...
I have a website using the prootype framework and I am looking to use a jquery plugin. Everything works just not in IE8. It works in ie7 which amazes me. Any idea what maybe wrong?
IE8 gives me object doesnt support this property or method where line jQuery.noConflict(); is
<script src="/my/docs/jquery.js" type="text/javascript"></scr...
I am developing an app on a page that uses jQuery 1.2.6, but I would like to use jQuery 1.4.2 for my app. I really don't like to use multiple versions of jQuery like this but the copy on the page (1.2.6) is something I have no control over. I decided to isolate my code like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional...
I have an form that takes a little while for the server to process. I need to ensure that the user waits and does not attempt to resubmit the form by clicking the button again. I tried using the following jQuery code:
<script type="text/javascript">
$(document).ready(function(){
$("form#my_form").submit(function(){
$('input')....
I'm looking for a jQuery div slider plugin that slides horizontal off the page, displaying more divs the larger the browser window is open. I like the jQuery Coda Slider... just need it to be full page, not hide the overflow, and not display the horizontal browser scrollbar.
Any suggestions?
UPDATED:
Below is an example of what I'm try...
I have a definition list with a lot of text inside of it. When a user comes to the page, I want the jQuery to hide two thirds of that content, add a next and previous button where appropriate, and fade the content in and out. The first third of the content is .issue-group-1, the second third is .issue-group-2, the third, .issue-group-3...
Is it possible to record a user's input into an HTML textfield, and playback at a later date in realtime? One way I can think of would be to capture each keyDown event and the time delta (accurate to a few hundred ms), and store the pairs together.
Can you think of a better/more efficient way?
...
Hello guys.
I having problem with append() when the textbox is focus the second time.
var i = 1;
$('textarea').live('focusin', function(){
$(this).keydown(function(e){
var code = e.which;
if(code === 13) {
i++;
$('#linenumbers').append('<li>' + i + '...
How do I come up with this, the sidebar and the top sliding bit:
Apple iPad Page
Scriptaculous or jQuery, etc.
I'd like this for one of my pages on my website to do the effects on load.
Thanks :)
...
I'm trying to use this tooltip plugin: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/. I can't seem to get it to work.
<head>
<script type="text/javascript" src="/static/JQuery.js"></script>
<script type="text/javascript" src="/static/jquery-ui-1.8.1.custom.min.js"></script>
<script type="text/javascript" src="/...