Tagged Questions
The jquery-1.3.2 tag has no wiki summary.
5
votes
4answers
4k views
Is it possible to Stop jqGrid row(s) from being selected and/or highlighted?
I've looked at the documentation but I've been unable to find an answer. Is there a way to prevent a row from being highlighted when selected? That or even a way to stop the row being selected at ...
5
votes
1answer
2k views
Why am I getting a jQuery 'ui.element is undefined' error?
I have the following:
$('#widgets ul').sortable(
{
connectWith: ['#widgets ul'],
opacity: 0.7,
start: function(e, ui) {
fromWidgetPosition = ui.item.prevAll().length + 1;
fromRowId = ...
4
votes
5answers
5k views
JQuery 1.3.2 vsdoc does not produce Visual Studio intellisense
In past i have worked with JQuery 1.2 vsdoc file which generates intellisense for vs2008 sp1.
I have recently downloaded latest version of JQuery 1.3.2 and JQuery 1.3.2 vsdoc file.
When i tried to ...
3
votes
1answer
154 views
“elems.sort is not a function” in jQuery 1.3.1
I needed to randomize answer choices for a little game I'm building using html/jquery.
I came across a jQuery Randomize plugin shared by Russ Cam on Stack Overflow on Oct. 2009
(see here: Randomize ...
3
votes
2answers
2k views
slideToggle and :visible
When using the sliderToggle method, the :visible expression never seems to return anything other than true.
If I manually use show/ hide in conjunction with :visible expression it'll work just fine.
...
2
votes
2answers
453 views
jQuery core tabs script - multiple instances?
I have the following jQuery script on my site to switch tabs without reloading the page. I'm using jQuery core v1.3.2 (NOT jQuery UI)
<!-- JS -->
<script type="text/javascript">
...
2
votes
3answers
3k views
Invalid procedure call or argument IE issue when iterating through document.styleSheets using $.each()
I've written this code that iterates over all global style sheet rules and stores them in an array/object. I use this dictionary-like object later to change global rules rather than setting styles on ...
2
votes
4answers
413 views
jQuery with ASP.NET WebForms for a poor old server dev
OK, being a server developer, this Javascript voodoo on the ASP.NET page (based on a master page) rendered on the client is a bit too much for me, it seems :-)
I decided to try to use jQuery to ...
2
votes
4answers
997 views
How do i run the .animate function in jQuery forever?
$(this).css("left","100px");
function endless(){
$(this).animate({
left:'-=100px',
},{
easing: "linear",
duration: 5000,
complete: function() {
...
1
vote
4answers
99 views
What are the advantages in including Jquery library from google's ajax api library? [closed]
Possible Duplicate:
Why should I use Google's CDN for jQuery?
I have seen many of the web programmers including Jquery library from google's ajax api library. Is there any real ...
1
vote
4answers
4k views
Facebox - Jquery 1.2.1 close function broken in 1.3.2
I am using "facebox" which uses jQuery 1.2.1 on my website here
http://www.pointclickshoot.com/beta2
The rest of my site is using jQuery-1.3.2.js. I need to update the following functions to work ...
1
vote
6answers
3k views
Jquery problems in IE8
Jquery runs fine in Safari and Firefox. In IE8 (using the Developer Tools), I get the error: "Could not get the position property. Invalid argument jquery-1.3.2.js, line 12 character 12949". Using ...
1
vote
2answers
3k views
How to resize a YouTube player, from thumbnail size to 'normal' size
I guess this is similar to what Facebook does, but...I haven't worked out how to follow what they do and if this is a dupe, I apologise.
The idea is to have a thumbnail-size player (width="220px" ...
1
vote
1answer
1k views
Jquery bind several functions to one element
Strange, is there no possibility to put several binds in jquery, on one element?
$('input').click(clickfn).click(clickfn)
I am using 1.3.2
function clickme() { alert('click me') }
$('.click', ...
0
votes
1answer
50 views
jQuery 1.3.2 conflict
I am using Jquery 1.3.2 for a script that needs it to run in IE 7/8.
The following code I've made to modify tabSlideOUt v1.3
By William Paoli: http://wpaoli.building58.com is causing a conflict ...
0
votes
2answers
263 views
Script not working when migrated from jQuery 1.3.2 to 1.6.2
This script runs well with jQuery-1.3.2.min.js but doesn't run with jQuery-1.6.2.min.js .
Can anyone help me to fix this?
function moveScroller() {
var a = function () {
var b = ...
0
votes
0answers
215 views
IE-only problem with ajax-returned html not showing selected option for select list
Having a problem in IE only (versions 7 and 8; didn't try 9 or 6). I am using jquery $.ajax to return html.
If I request to retrieve one html select list (rendered from a .NET control), the option ...
0
votes
2answers
160 views
jQuery check radio option not checking
I can't get the radio options to check on my page. They won't check Yes or No.
for (var i = 0; i < r.length; i++) {
...
0
votes
2answers
223 views
Ruby on Rails: jQuery why is val not defined?
function replaceIfEmpty(fieldID, value){
alert($j('input#'+fieldID.val()));
if ($j('input#'+fieldID).val() == ""){
$j('input#'+fieldID).val(value);
}
}
there's my function, and ...
0
votes
4answers
619 views
IIS6 throws error for jquery
on my master page, I have referenced jquery file. I am doing simple hover function. When mouse hover, I change the css and when hover out, change the css back to originial. Nothing fancy. but my page ...
0
votes
4answers
4k views
Select first sibling
I'm trying to select the inner value of the first sibling - using jQuery - in an environment where I cannot alter the html markup.
I have the following:
<tr>
<td>3</td>
...
0
votes
2answers
163 views
Selector regression after upgrade to jQuery 1.3.2
I've recently upgraded an application from jQuery 1.2 to 1.3.2 - and we've found a rather strange regression.
For some html approximately like this (simplified a bit)
<div id="steps">
...
0
votes
1answer
292 views
jQuery doesn't select lineargradient object
I am using jQuery 1.3.2, and I'm trying to select some elements in an svg DOM element.
$('svg > defs > lineargradient')
However for some reason it does not select it, I know that I can access ...
0
votes
2answers
815 views
An accordion in jQuery 1.3.2 not working (was working in 1.3!)
Ok, so somewhere, something is wrong. When I was using version 1.3 the accordion was working fine. When I upgraded jQuery to version 1.3.2 it now no longer works as it's supposed to. I need the latest ...
0
votes
4answers
4k views
JQuery Add HTML and Event
I currently have the following in JQuery 1.3.2
for (i = 0; i < totalPages; i++) {
var newDiv = $("<a href=\"#\">").append(i+1).click(function()
{
alert(i+1);
});
...
0
votes
4answers
139 views
waiting before do action use jquery
I use jquery version 1.3.2,
I want to use event "load" for load content of a page to "div".
I used: $("#div1").load("page1.php"); ---> it worked.
But i want before do event "load", it waiting ...