- Screen name: marcuseby
marcuseby's Profile
8 Posts
8 Responses
0
Followers
Show:
- Expanded view
- List view
Private Message
- Don't know if this is happening to anyone else, but it is to me.
When I use- google.load("jqueryui", "1", {uncompressed:false});
I get a jqueryui function that adds something strange to all buttons when creating them:- curcat.find("div.postRow a.newpostbutt").button({
- icons: {
- primary: "ui-icon-plusthick"
- }
- });
- ui-button-text-icon-primary
instead of:- ui-button-text-icon
Here's the wierd part, using this as my load line for Google's jQuery API:- google.load("jqueryui", "1.8.2", {uncompressed:false});
Which makes sense, since its supposed to be the newest jqueryui.
Just thought you should know.
It's been happening for the last few hours, I've currently updated all scripts to load 1.8.2
Thanks
Marcus- 29-Apr-2010 05:19 AM
- Forum: Using jQuery UI
If anyone has IE6 and goes to http://www.ashcreek.ca and tries to login, you'll notice you can't type in any of the fields.
I use the jQueryUI dialog, and include a form in the box, then validate it with jquery.validate.
In all the other browsers I don't have any problems, but (surprise) in IE6, text can't even be typed into the fields.
Any thoughts, has someone seen this before?
I should mention, that the inability to type happens before form validation, which happens on the ok button function. So I can kind of rule out the validation plugin.
And I've tried using the packed/minned, and normal versions of both jquery and jqueryui. Nothing changes this.
P.S. Using Jquery 1.4.2 and UI 1.8.1
Thanks
Marcus- 23-Jan-2010 02:13 AM
- Forum: Developing jQuery Core
I'm having all kinds of problems with the backwards compatible plugin your team has released.
I'll load both jquery.1.4.js and the compat plugin.
The first error:
It produces "windowData" is not defined.
If I comment out your jQuery.data function and reload the page, then the jQuery.fn.init causes the whole page to become a single event, which triggers a "Want to bookmark this page" in Firefox.
If I comment out the jQuery.fn.init function, then the page half works, and causes even more errors.
And firebug isn't showing me the solution...
Unfortunately I had to take down the demo page, as the client wants this fixed yesterday, which means sticking with blockui and 1.3 which I hate to do, but until this is fixed, or I fix it, I don't really have any other options.
ThanksMarcus
P.S. I'm hoping this is an issue with my code, or the way I've coded something...Hi guys.
As I'm sure you've heard countless times before, jQuery is a product I cannot live without, I use it on every app I create.
From the simple to the massively complex, it cuts down my coding time massively, and since I live from my coding, I can't thank you guys enough for making coding a joy once again.
Your latest release, v1.4 produces the following error:
uncaught exception: [Exception... "Could not convert JavaScript argument arg 0" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS)" location: "JS frame :: http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.js :: anonymous :: line 4449" data: no]
http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.js
Line 4452Whenever I try and create a modal block using blockUI,
I've isolated the code that produces it:
(I create the iframe and div markup on the fly)
var pgHdr = mainContain.find('div#pageHeader');
var tmpRow = pgHdr.after("<div id='resmanagebox' style=\"width:464px; height:800px; border:none; line-height:18px; margin-left:42px; margin-top:19px; \"><center><div style=\"width: 320px;\"><a class=\"ovalbutton ovalbuttonSM ovalbuttonSMRD\" style=\"margin: 6px 6px 6px 45px; text-align: center; width:250px;\" href=\"javascript:var emptyanchor=0;\"><span style=\"font-face:Verdana; letter-spacing:1px;\">click here to close managing panel</span></a></div></center><iframe allowTransparency='true' scrolling='auto' src='' width='464px' height='800px' frameborder='0' style=\"width:464px; height:800px; margin:25px 0px;\" id='resmanageframe' name='resmanageframe'></iframe></div>");
var newRow = pgHdr.next();(Then I try and start the block, this is where the error happens)
newRow.block({message:'<span class="tankload tankloadmini" style="visibility:visible;color:#000; left:0px; top:25px; background-position:right;">loading</span>',overlayCSS: { backgroundColor: '#fff' },centerY: 0, css: { top: '39px', border:'none', backgroundColor:'transparent' } });
I would love some advice on what I can do to fix this...
Thanks and keep up the GREAT work.
Marcus Eby -
Owner - EnglishBayInc.com
Author: HTML Studio Skills
I have a frame within a window, and I have a form inside that frame.
When I use clone on the FILE INPUT in that frame, it will not clone in
IE.
(obviously it works fine in FF3, as most things do)
I looked at the code, and I think I know why.
Because the clone command only reference the outside document (as in
container = document.createElement("div"))
It tried to copy the form element (in this case a file input) from
inside the iframe to the outside document object, which isn't allowed
in IE.
Is there a way for me to change the code, so that it isn't referencing
the outside DOCUMENT, but instead clones based on whatever the current
active document object is.
Something like "this.document" (I know thats not the command, but I
don't know how to get the current document object) instead of using
"document."
That way, the reference would always be local to whatever the active
document object is, not the parent.
Thanks
Marcus- 15-Jul-2008 02:15 PM
- Forum: Using jQuery
Wondering if anyone can help me.
I'm trying to access the body of an iframe, (done) and want to see the
selectionStart or get the selection range from it.
Only problem is it doesn't contain the selection range, or
selectionstart.
How can I retrieve this?
Thanks
Have tried the following:
$(dsrte)
$(dsrte.body)
$(dsrte.iframe.body)
etc...
None contain the selectionStart property.
I'm wondering if its only used in fields, if so, what do I need to do
to capture the body selection?
Marcus
I've got a small problem with BlockUI
In FF3 it seems to be always choosing the parent DIV to block and not
the one I give it.
And SURPRISE something is actually working properly in IE. ACK!!!
So for now, its just a FF bug.
The code is:
var fan1 = $(bObj).parents(".post:first");
alert(fan1.length);
$(fan1).block({message:null,overlayCSS: { backgroundColor:
'#fff' } });
The alert tells me that the length is 1, and when I ask for the ID its
the correct child DIV.
However the BLOCK happens in this divs PARENT.
The parent DIV in FF is blocked.
Anyone else experienced similar?
Thanks
Marcus
I've got a small problem with BlockUI
In FF3 it seems to be always choosing the parent DIV to block and not
the one I give it.
And SURPRISE something is actually working properly in IE. ACK!!!
So for now, its just a FF bug.
The code is:
var fan1 = $(bObj).parents(".post:first");
alert(fan1.length);
$(fan1).block({message:null,overlayCSS: { backgroundColor:
'#fff' } });
The alert tells me that the length is 1, and when I ask for the ID its
the correct child DIV.
However the BLOCK happens in this divs PARENT.
The parent DIV in FF is blocked.
Anyone else experienced similar?
Thanks
Marcus- «Prev
- Next »
Moderate user : marcuseby
© 2013 jQuery Foundation
Sponsored by and others.

