bogdan747
Forum Replies Created
-
Forum: Hacks
In reply to: wordpress javascript in IESorry for confusion in this post but I have to make a correction to it, just in case some one else is looking at the same issues.
Getting the onload into jQuery itself did not fix the problem with IE not loading. I only found that after trying to deploy on other sites. But I still left the doc.ready as a better option
jQuery(document).ready(function(){
getData();
});What I had to do to fix the not loading IE issues was ……
deregister and register a new version of jQuery. code below.<?php
wp_deregister_script( ‘jquery’ );
wp_register_script( ‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js’);
wp_enqueue_script( ‘jquery’ );wp_enqueue_script(‘jumpMenu’, ‘http://iventurecard.com/_jumpMenu/jumpBar.js’);
add_action(‘jumpMenu’, ‘getData’);
?>I hope this helps some one,
Thank you all for help
Cheers
BogdanForum: Hacks
In reply to: wordpress javascript in IEThanks pdclark
That worked OK, and I include the code for posterity.
I had a doc.ready section but only fired on select (any select)
so i just commented the jQuery(“select”).change(function(){ and related });
———————
jQuery(document).ready(function(){
// Location Selector
// jQuery(“select”).change(function(){
getData();
// });
});It even seem to load sooner than last time.
All that said, why the onload worked fine in (IE) on WP-3.2.1 and and on stand alone pages as well but not in WP-3.0.3? Rhetorical question, don’t expect the answer, i am happy it works ……
Thanks Again
BogdanForum: Hacks
In reply to: wordpress javascript in IEThanks esmi,
I have read that page before I posted the first request and that’s where I got wp_enqueue_script() and add_action() from. I also read the external links to http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/ but
One thing I forgot was to include the version number of the word press that the client is using – WP 3.0.3,
I have installed the 3.2.1 on my server at http://word.atcentre.com/ and it works OK.Should i still review that page, or is there something I need to change in wordpress 3.0.3 on the client sites, they have 11 instances of 3.0.3 running?
Thanks for the reply
BogdanForum: Hacks
In reply to: wordpress javascript in IESeriously? there is not even one person that knows how wordpress works?
DO you need more information?
C’mon guys, it’s been a week.Forum: Fixing WordPress
In reply to: Gallery thumbnails missingThanks Jewell
WOW,…… 3000M = 3GB that is more than most peoples computer memory.
Thanks for thatNice photos btw
Oh, I thought I mention this, that I can view and download hires version of the photos (original resolution) and just want to make sure you are aware of this. This mean that people can just copy and use them for their work and not give you any credit for it. The original EXIF data can be replaced and reentered as their own if they dishonest. You hope that the publication will not go unpunished for doing that but you never know you would have to know that some obscure place in Poland is printing your photos ….. ?Cheers
BogdanForum: Fixing WordPress
In reply to: Gallery thumbnails missingPlease let us know the outcome, I am looking to get my photos on as well. I just started testing word press for that purpose.
Bogdan