i am attempting to use the jquery UI dialog script in my wordpress theme admin page. everything is straight from the UI demo and yet i end up with a dialog box that looks like :
http://flic.kr/p/8gAPt6 notice the dialog is not popped up over anything and instead buried in bottom corner, just before the closing body tag.
the UI dialo...
I'm using the jQuery Tools tooltip plugin, which is initialized with $('selector').tooltip(). I'd like to call this on any current or future .tooltipper element. I figured that the following would work:
$('.tooltipper').live('ready', function(){
$(this).tooltip()
}
But it was unsuccessful---the ready event did not fire. The same for...
Hi. I need to select a class in my javascript and change one of its property.
but since that class is being used with different divs, I need to change the property of the class I hover upon only and not the other ones. is that possible?
the html structure looks like this:
<div class="home_linkbox_href"><a href=""><div class="home_link...
Hello,
I have an iframe loaded and I want to attach a click event to every anchor. The modal is triggered from a link.
UPDATED:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<title...
Ok so my website located here:
http://www.here2four.com/of/ is a wordpress template that uses jquery to display recent posts. I finally tested the site with firebug and it gives me this error:
Node cannot be inserted at the specified point in the hierarchy" code: "3 Line 245
this.insertBefore( elem, this.firstChild );
Does anybody kn...
I realize there are tonnes of similar questions already up here but I cannot figure this one out.
I have a Web Service (C#, .net 3.5). The essential Code you need to know of is as follows:
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptS...
I'm looking to create a menu that is a hybrid of an accordion control and a fly-out menu, but I want to have it expand across the x axis instead of the y:
Is there a name for this widget? The name of a jQuery plugin would be even better.
Thanks
...
Hi,
what is the right way to determine if an object has one class OR another one?
The following is appearantly wrong..
if ($('#menu-item-49').hasClass('current-menu-item' || 'current-menu-parent') ) {
$('ul.sub-menu ').css('display', 'block');
}
Thanks!
...
We want to know if it is possible to have a function using jQuery to inspect a number of elements and, depending on the types assigned to them by one click, perform other functions. Basically, a function that would run forever, while the user does not refresh the page.
The idea is not to depend on events clicks to perform a function, bu...
I'm a big fan of the jquery cycle plugin yet it would be cool if it had some more complex transition effects similar to Nivo Slider or jqFancyTransistions - http://workshop.rs/projects/jqfancytransitions/. I understand the jist of how to create custom effects with jquery cycle, yet I'm having a hard time trying to figure out how to crea...
I'm using the following right now:
$('input[value=NEW]:hidden').parent().parent().animate({
backgroundColor: "#FF9933",
duration: 500
}).animate({
duration: 500,
backgroundColor: "#FFFFFF"
...
Hello guys,
I was hoping to get some help on this one. I am looking to have appended to all images and media that get applied to a post via the upload tool in WordPress _thumb to the src of the media object.
Thanks,
Matt
...
Hi,
I'm trying to build a system using jqgrid which does everything on the clientside, i.e. use AJAX to retrieve a JSON object (using C#/.Net) and cache this in a javascript variable and then populate several grids from that cache (addRowData), depending on the data. That's all working very well.
However, I'm having problems discoverin...
I have an application that passes any selected body text to a text-2-speech server (via ajax) when a "Say It" button in the parent window is clicked; the selected text is in an iframe.
The selection works on Firefox 3.6 and IE 8, but not Safari 5 (have not tried any others; thats our supported browser list). In Safari, whenever the bu...
So im using jquery to search and replace certain text in my html page. Which is:
function offon(){
$("#sidebar li").each(function(){
$(this).html($(this).html().replace(/Off Premise/, "Liquor Store"));
$(this).html($(this).html().replace(/On Premise/, "Bar/Restaurant"));
});
}
This is the createmarker function, it uses a...
Hi,
I have created the following example to illustrate a problem I have with a jquery tools slideshow. I want the list of headlines at the bottom to highlight as I scroll over the navigation dots below the content pane.
http://testing.lukem.co.uk/slider/slideshow.htm
It's a while since I've done any javascript or jquery so any pointer...
I have a list like this:
<li> <input value="1" name="bla[]" /> </li>
<li> <input value="2" name="bla[]" /> </li>
<li> <input value="3" name="bla[]" /> </li>
(always the same order)
and a array like this
array('3', '1', '2');
but the order of the values in the array can change anytime.
Can the list above be sorted with jQuery based...
The idea: I'm setting the value of an input with type="hidden" via regular Javascript or jQuery.
The issue: neither jQuery nor document.getElementById will find the hidden input, even though I'm absolutely sure the selector is correct and there are no conflicting elements.
The code:
I can't really post much of it, because it's full of ...
For example
I have a site www.site1.com and i'm using a iframe on a page of site1.com and source url of iframe is a page of www.site2.com.
page of site.com which is iframed on site1.com has some links which opens images in popup like lightbox.
on site1.com iframe has fixed width and height and i cannot extend further.
But the proble...
Hi,
Apple has a pretty cool feature when hovering over a large image here: http://www.apple.com/aperture/what-is.html It zooms out a small magnifier glass icon which moves with the cursor while over a zoomable image.
How can I do that, preferably with JQuery?
Can anyone help me please?
THX
...