<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$("a").click(function() {
$("#myDiv").load( "job_board_data.php", { pageNo: $(this).text()} );
return false;
});
});
</script>
<a href="job_board_data.php?p=1">1</a>
How can I pass variables to my job_board_data.php script???? I wa...
Ok, this is pretty weird...
Here's the page in question: http://s289116086.onlinehome.us/lawjournaltv/index.php
The main blue callout background was originally a PNG, but when I applied some jQuery trickery to it (click the numbers in the top right to see what I mean), an ugly white border appeared where the transparency should be. Se...
I'm not a JavaScript guru (yet). I am trying to figure out a way to cut down the number of lines below...are there any shortcuts for lets say the if statements?
function showDialog(divID)
{
var dialogDiv = $("#" + divID);
var height = 500;
var width = 400;
var resizable = false;
if (dialogDiv.attr("height") != ""...
I came here intent on asking a 'how do i' type question focused on a particular UI problem i have to solve and i started using the term 'viewport'. Seems there's lots of contexts that tag evokes. Before i outline mine i should ask - is there a generally recognized consensus as to what a 'viewport' is? Any gallery or object browser that f...
Take height for example.
JQ height() <=> JS height // WITHOUT padding, border and margin, including invisible areas
JQ innerHeight() <==> JS ??? // WITH padding, WITHOUT border and margin, including invisible areas
JQ outerHeight(false) <==> JS ??? // WITH padding and border, WITHOUT margin, including invisible areas
JQ outerHeight(...
Is there a way with JQUERY or Javascript, to detect anytime the browser window is loading something, making an ajax call, loading an image, etc... Basically any network activity?
...
i need to autoheight an iframe with a cross domain src, i tried with javascript, but I get an "Access Denied" when I try to get the height of iframe contentWindow. anyone knows any method?
...
Hi,
I have written the following jquery sitting in the head tags of my HTML
It is supposed to bring the image that is being hovered over to full opacity and slide another image over it from the right, then return when un-hovered.
<script type="text/javascript">
$(function() {
$('ul#img-nav li').css({
"opacity": .5
});
...
i have a jqueryui re-sizable div. I want only the width to be re-sizable and the height to remain auto, so that the div grows or shrinks with the content. If i set it to display only the east handle and use css height:auto, after resize the height also gets set even though only the width changed. I have to set the height to auto on resiz...
I am using JQuery UI plugin blockUI to block UI for every ajax request. It works like a charm, however, I don't want to block the UI (Or at least not show the "Please wait" message) when I am making ajax calls to fetch autocomplete suggest items. How do I do that? I am using jquery autocomplete plugin for autocomplete functionality.
Is ...
Hi, I am using the Florance theme and it comes with a sliding image gallery using jquery and jcarousellite. Somehow it stopped working (it was ok 2 days) and error (object does not support this property or method) points to the script. The site in question is www.happystay.net
Please, i need some help. Thanks in advance.
...
I am using the boxy jQuery plugin in my page to display a form on a clickEvent for the fullCalendar plugin.
It is working all right , the only problem I have is that the form in boxy brings up the confirmation dialog the first time the dialog is opened and when the user clicks "Ok" it submits the form a second time which generates 2 even...
I used to use this script for jquery email obfuscation:
$(".replaceAt").replaceWith("@");
$(".obfuscate").each(function () {
$(this).attr("href", "mailto:"+$(this).text());
});
<a class="obfuscate">name<span class="replaceAt">-AT-</span>server.com</a>
But with jQuery 1.4.x, I now get this error:
uncaught excepti...
Hi,
I have an animation on a partially hidden div container that will execute when the result returned from an ajax query is true. (The animation actually just brings the box into larger view, and then sliding it back in again)
$('#box').animate({'right':'-184px'}, 300, 'easeOutBounce');
$('#box').animate({'right':'-194px'}, 150, 'ease...
I need to stop all the page redirection thro' javascript.
I have some script which will redirect the page to some other location.
How can i stop all the page redirection in my page thro' jquery or javascript.
...
i am using blockUI to show content in modalbox. On my content page there is a flash video. In FF When the blockUI is active it overlaps everything including flash video, but in IE, flash video is overlapping the blockUI box. How to solve this issue in IE?
...
Hi guys, I keep getting duplicate entries in my database because of impatient users clicking the submit button multiple times.
I googled and googled and found a few scripts, but none of them seem to be sufficient.
How can I prevent these duplicate entries from occurring using javascript or preferably jQuery?
Thanx in advance!
...
I created a class for JSON responses:
public class PostCodeJson
{
public String Text { get; private set; }
public String Value { get; private set; }
#region Constructors
/// <summary>
/// Empty constructor
/// </summary>
public PostCodeJson()
{
this.Text = String.Empty;
this.Value = Strin...
I have an architecture similar to this:
<div id="container">
<div>stuff here</div>
<div>stuff here</div>
<div>stuff here</div>
<div>stuff here</div>
</div>
I want to, using jQuery, hide the cursor when the mouse enters #container. However as the nested divs appear on top it doesn't quite work that way. How can I hide the mouse curso...
Link: http://www.dynamicweb.dk/Versioner-33012.aspx
Whenever I activate my tabs, the entire website gets copied into the content for the specific tab.
Any suggestions why ?
Click 'se tillægsmoduler' to see the problem.
...