[jQuery] Re: Can I use external domain with jQuery media plugin ?

2010-02-22 Thread Mike Alsup
> it is about jQuery media plugin (http://malsup.com/jquery/media/ > misc.html) > > Can I use > >   http://www.google.co.in";> > > This to load EXTERNAL DOMAIN html page in an iframe that media plugin > I create. Yes, this should work. The media plugin just creates an iframe for this content.

[jQuery] Re: jQuery Cycle: two cycles with different effect & one pager

2010-02-02 Thread Mike Alsup
$('#slideshow').cycle({ fx: 'fade,cover' }); On Feb 1, 8:14 pm, Florushj wrote: > I'm having some trouble adjusting jQuery Cycle to my wishes. Unfortunately > I'm no jQuery hero :-( > > This is what I want in short: > It's basically this > example:http://www.malsup.com/jquery/cycle/pager-do

[jQuery] Re: Jquery noconflict not working

2010-01-17 Thread Mike Alsup
The error I see is on this line: setTimeout('chatHeartbeat();',chatHeartbeatTime); Instead of passing a string as the first arg to setTimeout, pass the actual fn reference: setTimeout(chatHeartbeat, chatHeartbeatTime); When passing a string it will be evaluated in the global context. But your

[jQuery] Re: jQuery Form File Download Error

2010-01-17 Thread Mike Alsup
> I have a form in which one of the submit buttons initiates a download > of a file. Under normal circumstances this works perfectly, however, > if I introduce the JQuery Form plugin as follows: > >         var options = { target: "#dialog" }; >       $('#viewform').ajaxForm(options); Try setting

[jQuery] Re: Read ajax response headers?

2010-01-14 Thread Mike Alsup
> So if someone has a second, can you let me know if the above code > could potentially get out of sync? Maybe when I create the list item You don't need to use both the success and complete fn. You can use complete like this: complete: function(xhr, status) { if (status == "success") {

[jQuery] Re: Read ajax response headers?

2010-01-14 Thread Mike Alsup
> success:function (data,xhr) {} The above callback signature applies to jQuery v1.4. In prior versions the xhr was not passed to the success callback (but is passed to complete callback).

[jQuery] Re: jQuery Form Plugin

2010-01-13 Thread Mike Alsup
Use Firebug to see what data is actually being posted to the server. > in update_homepage.php i save data to mysqldb. > > But if i click to submit buton, i see in OK > echo from update_homepage.php, but in db is only first (Nadpis) field > of form. And (!!!) if i click to this button second time

[jQuery] Re: Error in IE6 and 7, but not 8 (or FF, and Chrome) ...

2010-01-09 Thread Mike Alsup
the_ID: LID, remove the comma. On Jan 9, 11:09 am, youradds wrote: > If anyone has IE 6 or 7, please test this URL: > > http://ultradev.com.nmsrv.com/cgi-bin/dev/page.cgi?g=Detailed%2F337.html > > I'm wonderig if this is an issue with IETester (what I use to test > different versions of IE) .

[jQuery] Re: Can we use jquery for paging and sorting in asp.net 2.0 ?????

2010-01-08 Thread Mike Alsup
> take a look at jqGrid > > http://www.trirand.com/blog/ jqGrid rocks!!

[jQuery] Re: jQuery AJAX Question

2010-01-07 Thread Mike Alsup
> I was curious if there was a way to hit the current xhr object in the > success callback.  I've been tinkering with it, and have been unable > to figure out how to do that. No, but you can access the xhr in the 'complete' callback.

[jQuery] Re: JQuery Cycle Speed

2010-01-07 Thread Mike Alsup
> Figured it out. The problem is, in fact, with the easing. Cycle has a default > easing set, but setting it to 'linear' fixes it and makes the entire thing > smooth. Hmm, nice.

[jQuery] Re: JQuery Cycle Speed

2010-01-07 Thread Mike Alsup
> Hey, I'm using the JQuery cycle plugin (http://malsup.com/jquery/cycle/) and > I have images set to auto-scroll horizontally. The plugin automatically > eases the slides (I've tried turning easing off), and I'm wondering if > anyone knows of a way to get them to just continually move horizontally

[jQuery] Re: JQuery files(.js) required

2010-01-07 Thread Mike Alsup
> None of those are redundant, but three tips: Actually all of the individual jquery UI files are redundant with jquery.ui-1.7.2.custom.min.js if that download was configured properly. Try with just these three: jquery-1.3.2.js, jquery.bgiframe.js, jquery.ui-1.7.2.custom.min.js

[jQuery] Re: jQuery BlockUI Plugin (v2) add onBlock()

2010-01-06 Thread Mike Alsup
> Hi all, >   in this plug-in I need a function like onUnblock but on completed > fadein.. > can Add this function? ok. http://www.malsup.com/jquery/block/#download

[jQuery] Re: Form submit success method not being called

2010-01-06 Thread Mike Alsup
What you have there should be working. Perhaps the json response is not properly formatting. Try adding an error callback, or using the global ajaxError hook, and see if that's the problem. Mike On Jan 5, 8:20 pm, Scott Brady wrote: > I'm having an issue using the jquery form plug-in.  The for

[jQuery] Re: jQuery Cycle Plugin width problems

2010-01-04 Thread Mike Alsup
> Thanks for any help on this. .slideshow li { width: 100% !important }

[jQuery] Re: jQuery Cycle Multiple Pagers

2009-12-24 Thread Mike Alsup
Two pagers, one slideshow: http://jquery.malsup.com/cycle/pager-two.html Mike On Dec 24, 8:54 am, pmAgony wrote: > Update, I was able to successfully complete #2 and #3.  My challenge > right now is being able to get two synchronized pagers on the same > cycle. > > If anyone can chime in to ass

[jQuery] Re: Jquery .submit not firing up!

2009-12-23 Thread Mike Alsup
tuff, I'm a php guy, so maybe it > is me! > > Thanks > > 2009/12/23 Mike Alsup : > > > > > Most likely you have a JavaScript error somewhere that is preventing > > your scripts from running.  Post a link if you can.

[jQuery] Re: Jquery .submit not firing up!

2009-12-22 Thread Mike Alsup
Most likely you have a JavaScript error somewhere that is preventing your scripts from running. Post a link if you can. On Dec 22, 8:15 pm, Peter Laws wrote: > But thats after the (test) alert box, and I'm not even getting that > popping up. Surely I should be seeing the alert on submit? > > 2

[jQuery] Re: IE Issue with jquery.form.js

2009-12-22 Thread Mike Alsup
Set a breakpoint in jQuery's httpData function and see why it's failing. Mike On Dec 22, 8:11 pm, dirknibleck wrote: > I have what I think is a pretty basic function going on that fails in > IE everytime. The code is below.  The javascript is first, followed by > the ajax response. > > In IE,

[jQuery] Re: jquery.cycle /// Next function in the next button and in the pictures

2009-12-21 Thread Mike Alsup
> next:'#next', next:'#next2' Change that to: next: '#next,#pics' The 'next' option let's you specify a jQuery selector string. So you can have as many elements as you want trigger the transition to the next slide. Mike

[jQuery] Re: How do I allow not add width to the li tag with jQuery Cycle Plugin

2009-12-21 Thread Mike Alsup
> I use this jquery-plugin:http://jquery.malsup.com/cycle/ > Each li-tag gets a calculated width allowing the contents to 2 lines, > but line 1 is sufficient. 2 lines breaks the design. The added width > is not necessary. Is it possible NOT to add to this? Can anyone help > me? It would be a great

[jQuery] Re: jQuery Cycle - Global pause on hover?

2009-12-21 Thread Mike Alsup
> If there are three slideshows on one page, is there a way to PAUSE > slideshows B & C when hovering over A? var $slideshows = $('#A,#B,#C').cycle({ // options speed: 700, timeout: 3000 }); $slideshows.hover( function() { $slideshows('pause'); }, function() { $slides

[jQuery] Re: Cycle plugin postback problem in ASP.Net

2009-12-08 Thread Mike Alsup
View the markup after the postback (use firebug). I can almost guarantee there are extra elements in the slideshow container, perhaps s or empty paragraphs or something. Post a link if you can. Mike On Dec 7, 11:31 pm, Michael wrote: > Anyone have an ideas or advice? > > Mike > > On Dec 1, 9:

[jQuery] Re: BlockUI strange behaviour in IE7

2009-12-02 Thread Mike Alsup
> I am using BlockUI in a pop-up to block it while the new data inserted > by the user is updated. > > It works pretty good in firefox but IE7 has a strange behaviour: after > pushing the submit button the overlay message is displayed and the pop- > up is closed (until here everything is fine) but

[jQuery] Re: blockUI history removal

2009-12-02 Thread Mike Alsup
> Shouldn't the code be > $(el).removeData('blockUI.history'); > ? Yes, good catch.

[jQuery] Re: jQuery Ajax BlockUI Database

2009-11-24 Thread Mike Alsup
You can do this with blockUI if what you're planning to display is reasonably succinct. When you have the database results in your ajax callback, assuming it is HTML, you can do something like this: $.get(someUrl, function(data) { var html = '' + data + 'OK'; $.blockUI({ message: html });

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-22 Thread Mike Alsup
I was a designer before dabbling in development. I still have a > > lot to learn. > > > Thanks again! > > > On Nov 21, 10:58 pm, Wroathe wrote: > > > > I'll give that try and see how it works - thanks in advance for the > > > reply. I really ap

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Mike Alsup
Try using the 'after' callback: $(function() { $('div#slides').cycle({ timeout: 7000, pause: 1, pager: 'div#buttons', pagerAnchorBuilder: function(idx) { return '' + idx + ''; }, after: function(curr, next, opts) { var alt

[jQuery] Re: jQuery and Cycle plugin

2009-11-17 Thread Mike Alsup
Try something like this: $(document).ready(function() { var $slideshow = $('#slideshow'); $slideshow.cycle({ fx: 'fade' }).cycle('pause'); $slideshow.hover(function() { $slideshow.cycle('resume'); }, function() {

[jQuery] Re: BlockUi - blue ring?

2009-11-17 Thread Mike Alsup
If you don't want a wait cursor then just set the css cursor prop: $.blockUI({ css: { cursor: 'default' } }); Mike On Nov 17, 4:05 am, "Jonathan Vanherpe (T & T NV)" wrote: > I don't see a busy cursor in Ubuntu, but I do see it in Win 7 and win XP > (on pretty much any browser). The exampl

[jQuery] Re: Cycle plugin won't start until all images have loaded (IE-only)

2009-11-13 Thread Mike Alsup
> When using the cycle plugin to display a slideshow in IE(6/?), it > won't start playing until all of the images have completely loaded. > This causes a delay of 5-15 seconds depending on the size and quantity > of images. There's no such problem with non-IE web browsers, however, > all of which s

[jQuery] Re: Generated output only displaying value - forms-jquery/ajax

2009-11-11 Thread Mike Alsup
On Nov 11, 1:56 pm, Rathric wrote: > I have a question about drop down options with html/jscript/Asp.net > and ajax/jquery/.  When the user populates the form and submits, the > output is written to memory and sent to an email address.  What I have > noticed is that the output is only showing th

[jQuery] Re: Cycle plugin with link functionality

2009-11-11 Thread Mike Alsup
> Hi, I have the cycle plugin setup so a series of thumbnails of the > image switch the bigger image upon mouseover.  Much like this > example...http://www.malsup.com/jquery/cycle/pager6.html > except mine works by hovering over the thumbs like: > > .cycle({ >         fx:     'fade', >         spee

[jQuery] Re: jquery form and "myfom"

2009-11-09 Thread Mike Alsup
> I want that 10 minutes of my life back... :\ Ha ha. Love it!

[jQuery] Re: Strange behaviour of BlockUI

2009-11-07 Thread Mike Alsup
> 1. I set: display: none to all divs that I want to present in BlockUI, > which is obvious - because I don't want these divs to be shown in > normal page flow. What is not obvious and strange is that BlockUI does > not un-hide such hidden elements when displaying them. > > I have to use for exampl

[jQuery] Re: jQuery form plugin?

2009-11-02 Thread Mike Alsup
Can you post a link to this page, or a similar example page? On Nov 1, 6:00 pm, Jim Byrnes wrote: > I am new to jQuery and really new to the form plugin so I must be > missing something simple but I can't figure out what is wrong. > > I have this form: > > >         Print Items Due Report >    

[jQuery] Re: jquery cycle - link to certain images only

2009-10-29 Thread Mike Alsup
> I am using jquery cycle to make a book presentation. Right now there > is click-advance and also buttons for next and previous images. > But what I want is to also have buttons to go to certain pages only, > e.g. first page, chapter 1, last page. > What I've found so far is only the possibility t

[jQuery] Re: blockUI and iframe

2009-10-29 Thread Mike Alsup
> is it possible to have blockUI block the entire page, but call it from > within an iframe on that page? > > I don't see any parameters to pass an element or document?  i know i > can get access to the parent frame with jQuery > ('body',parent.document), but wanted to use blockUI from within the >

[jQuery] Re: jquery each function iterate through form inputs problem

2009-10-24 Thread Mike Alsup
> $('#formid>input').each(function(){ >         if($(this).attr('id')!='') alert($(this).attr('value'); //fetch id if > not blank ang show value > > }); > > the code inside this function does not run if the form is rendered > this way: > > >   >           >         >   > > > but if it is rend

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread Mike Alsup
> I thought it was that simple... > So I should generate my json via a server-language (like php) and echo > that callback as in the post you refered? > I'll try that and keep you posted. Yes. Something like:

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread Mike Alsup
> the json file named "myjson.json" (I've reduced its contents to its > minimum for testing purposes and it validates in JSONLint): > {"result": "true"} > > The javascript: > $.getJSON('http://site1:/myjson.json', {}, function(data) { alert > (data.result); }) > > I'm testing it in a local ser

[jQuery] Re: Cycle fxFn being reset

2009-10-22 Thread Mike Alsup
> In regards to the 9/9/9 release; it seems like the fxFn is set to null > in the resetState function and not being set back. I am invoking the > script with: > > $(document).ready( function() {jQuery > ('#cf73b7c6341940210VgnVCM10288ea8c0').cycle({ > pagerEvent: 'mouseover', > timeout: 45

[jQuery] Re: Jquery Corner IE issues [Solution]

2009-10-21 Thread Mike Alsup
Image demo: http://jquery.malsup.com/corner/image.html On Oct 21, 12:34 pm, Dave Methvin wrote: > Right, you can't "corner" an img element because the img element can't > have children. Put the img in a div and round that. Better yet, create > the img src with rounded transparent corners!

[jQuery] Re: jQuery.ajax() not calling beforeSend?

2009-10-21 Thread Mike Alsup
> Yes, it is on a different domain (which is why jsonp is being used). What > strategy would you suggest for me to be able to specify headers? It's a > must-have for my application. You can't. Are you saying you're trying to access a jsonp service that requires specific request headers on the GE

[jQuery] Re: loading message shows up after page has loaded

2009-10-21 Thread Mike Alsup
> > Hope that helps. > > --Karl Bah, this is getting entirely too civil. Snooze... :-)

[jQuery] Re: jQuery.ajax() not calling beforeSend?

2009-10-21 Thread Mike Alsup
> The alert below never occurs (and a breakpoint is never hit if I put > it there), but I can see that the ajax request is being sent. > >                 j$.ajax({ >                         'url': serviceUrl, >                         dataType: "jsonp", >                         data: params, >  

[jQuery] Re: images show before jquery and cycle plugin work their magic

2009-10-21 Thread Mike Alsup
> I've had this issue before. As Karl suggests, I was able to fix it by > giving the parent element (the one calling the cycle plugin) a fixed > height (the height of the images you're cycling) and an overflow of > hidden in the CSS. If the slides are of different heights, set the > height to the

[jQuery] Re: Cycle plugin issue in Safari & Chrome

2009-10-21 Thread Mike Alsup
Slideshows work best when you declare the image sizes using the height and width attrs. When the images are cached it's not a problem because the browser knows the dimensions of the image, but if the images are not cached there is a reasonable chance that your slideshow will start before the imag

[jQuery] Re: JQuery blockUI plugin - support for queueEmpty function

2009-10-20 Thread Mike Alsup
> How would I extend blockUI to have a function callback for when the > queue is empty?  I want to use something like this in a project where > I have several queued ajax requests, but I only want to call blockUI > on the first request and unblockUI when the queue is empty. You can use the ajaxSt

[jQuery] Re: Cycle plugin: centering images of variable width?

2009-10-18 Thread Mike Alsup
A better way to approach this is to wrap the images in divs and then cycle the divs. You can then count on it working correctly for all the transition effects. http://jquery.malsup.com/cycle2/center-horz.html Mike On Oct 17, 4:25 pm, David Collins wrote: > I didn't see this as an option, so

[jQuery] Re: jquery cycle site is down

2009-10-17 Thread Mike Alsup
> the cycle site is down since yesterday, i get a 403 and 404 error, ??? Hosting problems. Content is temporarily available here: http://www.malsup.com/jquery/cycle2/ Mike

[jQuery] Re: Jquery Cycle - Combining Prev & Next with Image Count

2009-10-14 Thread Mike Alsup
"There's a demo for that". http://jquery.malsup.com/cycle/count2.html On Oct 14, 11:48 am, northbeach wrote: > I have worked out how to use the Next and Prev example here > :http://malsup.com/jquery/cycle/int2.html > > and the count example here:http://www.malsup.com/jquery/cycle/count.html

[jQuery] Re: loading message shows up after page has loaded

2009-10-14 Thread Mike Alsup
I'm enjoying this thread. :-) On Oct 14, 2:04 pm, Karl Swedberg wrote: > > Wow, easy there Karl. I was just showing you working examples of the > > issue I was experiencing. > > easy there? I was just trying to help. You showed examples that didn't   > include my suggestions, after we had alr

[jQuery] Re: Problems with the form plugin (no redirect to the next page)

2009-10-13 Thread Mike Alsup
That page is not using the Form plugin; it appears to be using Jörn's Validation plugin. Also, I'm not seeing the problem you described. When I check the box and submit the form the next page is loaded. Mike On Oct 13, 1:16 am, Laire wrote: > Hello, > I try to use the malsup form Plugin. > >

[jQuery] Re: Cycle Plugin -- Multiple Divs manipulated with one pager

2009-10-13 Thread Mike Alsup
> Hey all -- I've built a site that has two divs with variable content > (eventually this will become 3, but I assume it will scale up to that > with no major issues). I'd like to be able to change content with each > of them using the same pager. Here's an example of how to do this: http://www.

[jQuery] Re: Cycle Plugin not working in IE - who can help?

2009-10-09 Thread Mike Alsup
Remove the comma at the end of this line: prev: '#prev' , trailing commas at the end of an array are not allowed in IE 6/7. Also, next time please post a link instead of all your markup if possible. Cheers! Mike On Oct 9, 4:45 am, First Impression wrote: > Hi, > > I am currently develo

[jQuery] Re: Problem with box positioning in IE7 when using jquerycyclelite

2009-10-08 Thread Mike Alsup
> I don't have time to put a real test-case together right now, but just > on the off chance that someone's experienced the same class of > problem: > > I'm using jquerycyclelite (http://malsup.com/jquery/cycle/lite/) to > animate a set of linked images. An ancestor element has padding, but > the

[jQuery] Re: Skipping a slide with Cycle Plugin

2009-10-08 Thread Mike Alsup
> it'll just keep creating new elements in the DOM.  So I was wondering > if there's a way to remove elements from the slideshow while it's > running? No, there is no direct support for that in the plugin, short of stopping, manipulating and restarting the slideshow.

[jQuery] Re: Do events remain is memory when element is removed from DOM?

2009-10-06 Thread Mike Alsup
> An additional question I have for sake of completeness > > Will empty(), remove() unbind just child element events (1 level down) > or events for ALL descendants? All descendants.

[jQuery] Re: $ not recognized even though jQuery library referenced

2009-10-04 Thread Mike Alsup
> and yes, the paths are right.  I still get this error in firebug no matter > what: > > $ is not defined Must be more to it than that. Can you post a link to your page?

[jQuery] Re: Form Plugin issue with multiple submit buttons

2009-10-03 Thread Mike Alsup
> Sure, here it is. Thank you! > > http://test.nmrwiki.org/wiki/index.php?title=Special:People&command=/... > Ok, so here is the source for one of your forms: Administrator (1) That is not valid markup. If you look at Firebug you will

[jQuery] Re: why plugin function need 2 parameter sometimes

2009-10-02 Thread Mike Alsup
> I don't see how maxentries as parameter is need in this code > > jQuery.fn.pagination = function(maxentries, opts) > > in some plugins, i see everything works fine with just something like > this > > jQuery.fn.pluginname = function(opts) It all depends on how the author wrote the plugin. If t

[jQuery] Re: ajax submit upload file firebug... no answer

2009-10-02 Thread Mike Alsup
> Effectively after uploading file we can't see any response in firebug. > (You can see an example in the official website of jquery form > pluginhttp://malsup.com/jquery/form/#code-samples) You won't see the response from a file upload displayed on the Firebug console tab because that request

[jQuery] Re: Pick different effects with jquery

2009-10-02 Thread Mike Alsup
> Try taking a look at the wonderful cycle plugin of Mike Alsup: >http://malsup.com/jquery/cycle/options.html Thanks for the comment. Here's another page to look at that shows the variety of effects available: http://www.malsup.com/jquery/cycle/multi.html

[jQuery] Re: .ajax() with dataType: 'jsonp' will not use error callback if request fails

2009-10-02 Thread Mike Alsup
> I think this is a known limitation of jsonp as a technique, not a bug > with jquery itself. Jsonp works by appending a script tag to the DOM, > whose "src" attribute points to the URL you specify. The URL is > expected to wrap a json object in a function call to the function you > specify, and t

[jQuery] Re: Passing arguments to an ajax call that returns automagically

2009-10-02 Thread Mike Alsup
> I have a bunch of ajax events that are fired one after an other to fill > different spots on the page. Hence it's important that I know which dom > element each on of the resulting data is supposed to belong to. > > I was wondering if there is a way I can pass the id of each element into the > c

[jQuery] Re: Form Plugin issue with multiple submit buttons

2009-10-02 Thread Mike Alsup
> I've used $(#myform).ajaxForm(options) > method to make the form submittable with ajax. > > the problem is that no matter what button I click the > form data is the same and element is not > included > into the form data, as if it were not a "successul control". > > so at this point form doesn'

[jQuery] Re: Skipping a slide with Cycle Plugin

2009-10-01 Thread Mike Alsup
This isn't supported directly by the plugin. The only thing I can think of is using a dynamic timeout and setting it to 1 for that slide. I have a hunch it won't work terribly well though. Mike On Oct 1, 10:00 am, Garrison Locke wrote: > Does anyone know how to disable a slide or skip one bas

[jQuery] Re: How I made $7000 last month

2009-09-29 Thread Mike Alsup
Like the previous spam message, that also was not sent by me. I'm taking action to correct this from happening again. Thanks for your patience. Mike > Hello, > > I just want to tell you about my new method for earning money online, it is > so simple and easy, and you can check it here:

[jQuery] Re: XXX hot sexy banned movie XXX

2009-09-29 Thread Mike Alsup
Sigh.. this message was *not* sent by me. And I've just changed my Google password so hopefully it won't happen again. Mike On Sep 30, 6:24 am, "mal...@gmail.com" wrote: > hot sexy banned movie

[jQuery] Re: passing html to browser

2009-09-29 Thread Mike Alsup
> I am currently using the .after to insert html code into the website. > In the html code I am passing it I have div's with id's and classes. > I have other jquery functions which look for those id's and classes to > perform actions when the mouse moves over it, but it does not perform > the acti

[jQuery] Re: jquery.media.js modification

2009-09-26 Thread Mike Alsup
> I'm having a similar issue with the media plugin and Safari. According > to Safari's plugin list, mime type "video/quicktime" is limited to the > file types: mov,qt,mqv. This of course means that if you try and > publish an mp4 file, or if you would remap mp3 to play with Quicktime > instead of

[jQuery] Re: a little problem with checking all checkboxes

2009-09-26 Thread Mike Alsup
> Please consider the code below, supposed to check all child checkboxes > wjen a parent checkbox has been checked. > > //parentCheckbox and childCheckboxes are two variables set earlier. > //Here are typical values they produce once alert() > //I reproduce the exact string outputed when alert() :

[jQuery] Re: IE: Cursor still displays hourglass symbol after unblocking

2009-09-26 Thread Mike Alsup
> I have tried adding to both the overlayCSS and css overrides a cursor > of 'default' but it doesn't seem to do anything. http://www.malsup.com/jquery/block/sep26.html

[jQuery] Re: Prevent jagged text in IE

2009-09-26 Thread Mike Alsup
On Sep 25, 8:17 pm, "Rick Faircloth" wrote: > I include a reference to a file with this jQuery code in every page to solve > that problem, Dave. > > Best solution I've found so far. I got it from someone, somewhere, but don't > remember who. http://www.malsup.com/jquery/fadetest.html

[jQuery] Re: Load quicktime as needed

2009-09-25 Thread Mike Alsup
> My ideal solution would be a list of song titles and a play button. > When the user clicks the play button, the quicktime play is revealed > below the title and ONLY at that moment does the file start > downloading. If you are using the media plugin then just invoke "media" on the desired eleme

[jQuery] Re: IE: Cursor still displays hourglass symbol after unblocking

2009-09-25 Thread Mike Alsup
> > Yes, same problem I posted yesterday... funny we both hit it this > > week.   hopefully someone can help??  I know the author of blockUI > > says he monitors this forum... Hmm, anyone have any ideas for how to force IE to honor the new cursor style without having to move the mouse? One that

[jQuery] Re: IE: Cursor still displays hourglass symbol after unblocking

2009-09-24 Thread Mike Alsup
> Yes, same problem I posted yesterday... funny we both hit it this > week.   hopefully someone can help??  I know the author of blockUI > says he monitors this forum... Will take a look at this tonight. Thanks for the reminder. Mike

[jQuery] Re: Creating a tabbed UI

2009-09-23 Thread Mike Alsup
> Can someone post a simple example of creating a tabbed UI with JQUERY? For fully styled tabs you could use jQuery UI: http://docs.jquery.com/UI/Tabs

[jQuery] Re: how to get flash expressinstall working with jquery media and swfobject?

2009-09-23 Thread Mike Alsup
> the expressInstaller parameter is null by default in jquery media. > However, adding the expressinstall.swf as I did above doesn't seem to > work. > > What do I need to do to my mark-up or javascript to get flash > detection and prompt for installation working when flash isn't > installed? Set

[jQuery] Re: Single page application and jQuery

2009-09-23 Thread Mike Alsup
> $("").appendTo("body"); > First div html markup above is not 100% ok, and this kind of html is > deliberately not going to be handled properly by jQuery. Ouch. Deliberately not handled properly? That is certainly not true. jQuery itself uses this very syntax. Phaedra, how are you identifyin

[jQuery] Re: Blocking UI for synchronous ajax calls

2009-09-22 Thread Mike Alsup
> Hi Mike: > >    Finally I changed the calls to asynchronous. >    It looks good now. The web thanks you.

[jQuery] Re: variable keys in a Ajax post call

2009-09-22 Thread Mike Alsup
> How do I pass a variable as a key in a key/value pair in Ajax? > For example, this does NOT work: > > function DoAjaxCall(columnname, value) { >         $.post(_callerquery, { >             columnname: value >         }, function(data, textStatus) { >             alert(data+ ' '+ textStatus); >

[jQuery] Re: malsup's corners: strange top nudges in IE6 and Opera

2009-09-21 Thread Mike Alsup
> I am playing with malsup's corners and I am getting strange nudges on > both top corners in Opera, IE6 and Konquerer when applied to nested > elements (to achieve a cornered border). I am using exactly the same > code as on the demo page: "$(this).corner("round 8px").parent().css > ('padding', '

[jQuery] Re: Get rid of "long-running script dialog box" ?

2009-09-21 Thread Mike Alsup
> I can hardly "split my processing into smaller chunks" I'm sure that's not true. If your script is running so long that it causes the warning dialog to display then you must refactor it.

[jQuery] Re: Some problems with rounded corners

2009-09-20 Thread Mike Alsup
> For pages with a lot of text (and other content) I would like to have > the possibility to hide and show parts of the page with 'buttons'. I > have come a long way, but have some problems. I made a page to show > them: >    http://www.decebal.nl/testing.html > > I have come a long way and for t

[jQuery] Re: Does it support version 1.3.2?

2009-09-19 Thread Mike Alsup
On Sep 18, 9:31 pm, Catherine wrote: > Same as subject > > I'm having trouble using it with jQuery 1.3.2. > Please advice. What trouble are you having? You need to provide some details.

[jQuery] Re: blockUI issue in IE8 (submitting patch)

2009-09-18 Thread Mike Alsup
> I downloaded the plugin from plugins.jquery.com > > The available release there is 2.14. > > Hence the confusion and wasted effort :( > > Thank you for the plugin. Upgraded it and it works fine. Sorry about the wasted effort, Viraj. I thought I had updated that page long ago, but apparently I

[jQuery] Re: blockUI issue in IE8 (submitting patch)

2009-09-18 Thread Mike Alsup
> I am using blockUI(2.14) in one of my projects. > > A few days back, I upgraded to IE8 and the site stopped working. On > debugging, I found the issue to be in blockUI plugin. > > Apparently, the reason seems to be that the plugin uses dynamic > functions like setExpression which are not support

[jQuery] Re: AJAX: Display raw XML Document

2009-09-17 Thread Mike Alsup
Yes. On Sep 17, 5:59 am, jeanluca wrote: > does that also work in IE(6) ? > > > That did it. I was using success which did not provide access to the > > xml as a string I could output, but complete works great. Thanks! Now > > I cane easily get the text, the HTTP Response code. > > > > Try hooki

[jQuery] Re: Attaching methods to identical forms, but only invoking the method on the current form

2009-09-16 Thread Mike Alsup
> I have a form that is repeated through out the page by the backend, > which I have no control over. > > > Cancel > > > I want to attach an event to the link to clear the textarea. > $(".comment_form_cancel").live("click", function(event) { >         $(".your_comment").val(''); >         event

[jQuery] Re: AJAX: Display raw XML Document

2009-09-16 Thread Mike Alsup
> I still can't find a solution to simply print out the XML response > from an AJAX call. I'm surprised jQuery can't handle something that > simple, as it can otherwise do so much. > > The other js libraries don't seem to have a problem with it, it looks > like jQuery just isn't up to the task, an

[jQuery] Re: javascript

2009-09-16 Thread Mike Alsup
> i don't know why this is not working but the later is working well > please tell me what is wrong with this > > // not working > SocialSite.Home.UserInfo = > { >    options : { >        beforeSubmit: this.friendRequest, >         success:  this.friendResponse >    }, >     friendRequest : functi

[jQuery] Re: JQuery Cycle Plugin Random Timeout

2009-09-16 Thread Mike Alsup
> Given that, how would you allocate a timeout for say the first 3 > slides and then have the other slides all running at the default > timeout? Keep a counter and reference/update it in the timeoutFn. After 3 calls to the timeoutFn, return false thereafter.

[jQuery] Re: jQuery cycle IE issue

2009-09-15 Thread Mike Alsup
Try adding style rules for the anchors - they are the actual slides in your case: #slideshow1 a { height: 463px; width: 841px; display: block; } Mike On Sep 15, 5:00 pm, kcory wrote: > Hi, > > I've tried implementing jQuery cycle on my portfolio and it works in FF3 and > Safari but not in IE.

[jQuery] Re: Blocking UI for synchronous ajax calls

2009-09-15 Thread Mike Alsup
>    I have tested BlockUI Plugin but it does not start when I call it, > because I can see with Firebub that the ajax calls are finished when > BlockUI Plugin starts. And that is exactly the problem with making synchronous calls to the server - it locks the browser. I strongly recommend using a

[jQuery] Re: ajaxForm error call back

2009-09-14 Thread Mike Alsup
> How do I access my form object inside of the error callback? > > $('#foo').ajaxForm({ >   error: function(){ >     // where's my $('#foo') object here? >   } > }); One way is like this: $('form').ajaxForm({ beforeSerialize: function($form, opts) { opts.$form = $form; }, error:

[jQuery] Re: ajaxForm - upload issue

2009-09-14 Thread Mike Alsup
> I have a  form that I submit using the ajaxForm plugin. > I have 2 file fields: thumb and .swf > > The iframe option is set to true and the form uploads ok the images > but does nothing with the .swf file and I have no idea why is this > happening > > Is there some filesize limitation to the plu

[jQuery] Re: JQuery cycle plugin bug(?) in firefox

2009-09-13 Thread Mike Alsup
> When you first visit the page, firefox fails to render the images > correctly with the first overflowing it's container and the rest > appearing as squashed thumbnails.  When you refresh the page (but not > shift+refresh) it all works fine.   > Seehttp://www.thecathedraldeli.com/beta.html > for

  1   2   3   4   5   6   7   8   9   10   >