In firefox Fancybox only works on the last image (last image in the source, not the visual webpage). In IE everything works fine.
I changed ID into CLASS, but no succes yet. You can find the source here: http://www.luukratief-design.nl/dump/parallax/stack.html
please help! Bugging me for days now.
I asked this question befor, but did n...
What does the following syntax mean?
(function($){
$.fn.columnize = function(options) {
...
What’s function($)?
What’s $.fn. …?
...
Why am I getting a syntax error with this?
$(document).ready(function() {
$.post(some_url + "ajax/get_matching_products", {
user_id : user_id_hash,
url : user_page_url
}, function(data) {
var callback = eval("(" + data + ")");
//alert(callback.output);
if(callback.result == 1) {
...
Hi,
Is there any possible way to apply jquery theme (theme roller) to PHPBB forums?
Any help?
Thanks in advance
...
I'm using JQuery to hide an element with slide effect like this:
$(".teaser_container:visible").hide("slide", function() {
doSomething();
});
This works fine, but slides the element to the left. I want to slide it to the right, but can't find any example/syntax how to do this.
...
How to send triimed data using $.get() see code snippet below:
$("#txtSearch").keyup(function() {
$.get("/controller/method/",
{ 'param1': $.trim($("#txtSearch").val()) !== "" ? $.trim($("#txtSearch").val()) : return false; },
function(data) {
$("#div").html(data);
});
});
This results in syntax error whether or...
My site is affiliated in another site iframe.
The hosted site got the iframe on fix height inside a span with a scroll (don’t ask why).
I’m looking for a way to change the span scroll (with JS) from within the iframe (where my site is).
I know it can be done because I use JqueryUI dialog with position:top (inside the iframe)
which sc...
Hi people,
I have a problem with <a> tags.
I need to reassign an onclick event to this tag, but the href attribute must contain a link.
For example, I have some link:
<a href="http://en.wikipedia.org">Wikipedia</a>
And i need to change only the onclick event for this link so that when I click on it, some JavaScript functi...
Hey, here's the rough html I get to work with:
<li class="par_cat"></li>
<li class="sub_cat"></li>
<li class="sub_cat"></li>
<li class="par_cat"></li> // this is the single element I need to select
<li class="sub_cat"></li>
<li class="sub_cat"></li>
<li class="sub_cat current_sub"></li> // this is where I need to start searching
<li cla...
I want to get the handle of the currently clicked link in jquery. Suppose, I have a bunch of li a elements:
HTML
<ul id="navigation" class="main_menu">
<li><a href="#panel_home">Home</a></li>
<li><a href="#panel_story">Story</a></li>
<li><a href="#panel_mantra">Mantra</a></li>
<li><a href="#panel_showcase">Showcase</a><...
Hi,
I am using a popup plugin to open my popup window.
Generating html table using Javascript. In that there column Employee Id having hyperlink.
I am openning popup on click of hyperlink to display the employee details.
Dynamic generated code:
<a id='" + arrElement[0].EMP_DATA[i].EMP_ID +"'
href='employee.do?requestSource=EMP_PRO...
Hey,
I am using the JQuery show/hide functionality in a form (generated with php)
In this form, there are 10 hidden elements, and every time the user click on an "add another" link, it displays the next hidden element, and my footer goes down with it. So far, so good.
Now the problem is after 2 or 3 hidden elements are shown, the page...
I have a 'feature panel' consisting of a list of services and an image representing each service. Clicking on a h2 tag in the list removes the 'on' and 'noborder' class from all the li elements and should then apply those classes to the li element in which the h2 was clicked.
This works perfectly well in all browsers except ie6. In ie6 ...
What could it mean if I make an ajax request with the jQuery .load() and I get no response at all in firefox or chrome, and in ie8 I get an error saying "Access is Denied"?
...
Hello,
I have a probleme with jquery.ui.autocomplete 1.8 rc2 in IE7 or IE8 with the following CSS (inside jquery.ui.autocomplete.css) :
.ui-menu {
list-style:none;
padding: 2px;
margin: 0;display:block;
height:200px;
overflow:scroll;
}
I'm using the demo from the project cal...
I have multiple links that show/hide divs throughout (using slideDown()). Each of the links are
<a href="#">Link</a>
Everytime you click on the link, it jumps back to the top of the screen while it animates. I'm assuming it's because of the #. Is there any way in jQuery to focus on the animation rather than jump to the top of the ...
Hello all,
I am trying to get this awesome JQuery plugin working with SQL Server. I have setup PDO as I use it elsewhere (with MS Access) - I think I have it setup with sql server (2008) now. Here is how I connect:
define('DB_DSN',"odbc:Driver={SQL Server};Server=MyInstance;Database=table1;");
define('DB_USER', '');
define('DB_PASSWOR...
Hi there, bit stuck try to achieve something in Jquery and wondered if anyone can assist..
I am creating my own edit in place function, where you click on an edit button, and the content of my definition list gets swapped for a form...prefilled with data. Similar to this
All is fine apart from each editable section (user comments) is t...
I'm trying to highlight image map areas with jquery hover(),
I have highlighting divs which are absolutely positioned over the areas, I'm trying to display the div on hover but the problem is when the mouse is hovering over a particular area the highlighting happens but disappears quickly even-though the mouse is still hovering the area...
Hi,
I'm getting a parsererror when using this ajax request in Internet Explorer (7 and 8).
I'm using jquery 1.4.1
$.ajax({
url: 'data.xml',
dataType: 'xml',
contentType: 'text/xml', // also tried application/xml
success: doFunction
});
I read somewhere else that I should set the content type, but I don't know where. The cont...