jQuery Plugins » Part https://jqueryplugins.info jQuery plugins, tutorials and resources Tue, 18 Oct 2011 08:13:27 +0000 en hourly 1 http://wordpress.org/?v=3.2.1 web part vs javascript https://jqueryplugins.info/2011/10/web-part-vs-javascript/ https://jqueryplugins.info/2011/10/web-part-vs-javascript/#comments Sun, 16 Oct 2011 07:15:43 +0000 Admin https://jqueryplugins.info/2011/10/web-part-vs-javascript/ Post link: web part vs javascript

I want to create a web page that could be customized by user; It means user can show some parts, drag them to desired place … and the setting be...

]]>
Post link: web part vs javascript

I want to create a web page that could be customized by user;
It means user can show some parts, drag them to desired place … and the setting be saved for next log in.
I think I have two solutions (Except on Silverlight):
1. using asp.net web part
2.using a javascript library like jquery UI

which one is better choice?
Actually these days I hear less about web part(specially in ASP.net 4) and I thought it’s not a good solution ever.

newest questions tagged jquery – Stack Overflow

]]>
https://jqueryplugins.info/2011/10/web-part-vs-javascript/feed/ 0
how to refresh only a part of the page when F5 or refresh button is pressed https://jqueryplugins.info/2011/09/how-to-refresh-only-a-part-of-the-page-when-f5-or-refresh-button-is-pressed/ https://jqueryplugins.info/2011/09/how-to-refresh-only-a-part-of-the-page-when-f5-or-refresh-button-is-pressed/#comments Sat, 24 Sep 2011 15:14:10 +0000 Admin https://jqueryplugins.info/2011/09/how-to-refresh-only-a-part-of-the-page-when-f5-or-refresh-button-is-pressed/ Post link: how to refresh only a part of the page when F5 or refresh button is pressed

I’m designing a web application that has a shared menu for all pages. Due to this i decided to load the contents linked by the menu buttons inside a div,...

]]>
Post link: how to refresh only a part of the page when F5 or refresh button is pressed

I’m designing a web application that has a shared menu for all pages. Due to this i decided to load the contents linked by the menu buttons inside a div, using jquery.

So, i have this:

     $  ("#AddNewProductBtn").click(function() {
       $  ("#content").load("addproduct.html");
   });

I want to keep track of the page displayed inside the “#content” div. If the users refreshes the page i want to load the same page in “#content”. Is there any way to do this, or is there any workaround?

I saw some websites that use an iframe to load the pages, but when a user clicks a button in the menu the url is also changed. I didn’t find any info on how to do that.

Thanks

newest questions tagged jquery – Stack Overflow

]]>
https://jqueryplugins.info/2011/09/how-to-refresh-only-a-part-of-the-page-when-f5-or-refresh-button-is-pressed/feed/ 0
variables and jquery: how capture value and use them (part 2) https://jqueryplugins.info/2011/09/variables-and-jquery-how-capture-value-and-use-them-part-2/ https://jqueryplugins.info/2011/09/variables-and-jquery-how-capture-value-and-use-them-part-2/#comments Tue, 13 Sep 2011 08:21:43 +0000 Admin https://jqueryplugins.info/2011/09/variables-and-jquery-how-capture-value-and-use-them-part-2/ Post link: variables and jquery: how capture value and use them (part 2)

this is my problem: I have captured a variable from a ul-li list I have a list with a lot of names: Roma, Milano, Venezia … I capture the id...

]]>
Post link: variables and jquery: how capture value and use them (part 2)

this is my problem:

I have captured a variable from a ul-li list

I have a list with a lot of names: Roma, Milano, Venezia …
I capture the id value of these (pulsante1 for Roma, pulsante2 for Milano, pulsante3 for Venezia, … ) with a mouseover event (look for this question variables and jquery: how capture value (part 1) if you want to know more).

So, I have now a global variable called $ regionMap, and the its content changes every time the ul-li list has a mouseover event.
So, now I could use $ regionMap value instead of the different id values (pulsante1, pulsante2, pulsante3…) in other jquery scripts.

For example I have this loop:

$  ('#pulsante1').mousedown(function() // when click over pulsante1 (id value for "Roma")
        {
var $  variab=document.getElementById('pulsante1').innerHTML; // take the name (here Roma)
var $  alfa="#"+ $  variab;  // Roma is now #Roma
alert("You entered: " + $  alfa); //control
dialog($  alfa); // calling the function dialog rolling on #Roma value.
});

// here is similar at the first but instead #pulsante1(Roma) you have #pulsante2 (Milano)
$  ('#pulsante2').mousedown(function()
        {
        var $  variab=document.getElementById('pulsante2').innerHTML;
        var $  alfa="#"+ $  variab;
        alert("You entered: " + $  alfa); //control
        dialog($  alfa); // calling the function dialog
        });
                    });//close click

Now, I would like use $ regionMap instead pulsante1, pulsante2… but for me is impossible!
I try so $ ($ regionMap).mousedown(function() and in other way ( $ ($ regionMap)., ($ regionMap)., $ ('$ regionMap'). …. ),

but I have always no results! How can I do? You know how pass a variable?

I think that probably there is a better way to obtain similar result (for example with a loop *for in *) but I don’t know how to it…

Sorry for my long post and sorry for the basical english, but I’m not a developer and I have gone in a big TILT!

thanks

newest questions tagged jquery – Stack Overflow

]]>
https://jqueryplugins.info/2011/09/variables-and-jquery-how-capture-value-and-use-them-part-2/feed/ 0
is there anyway in jquery to change part of an image https://jqueryplugins.info/2011/09/is-there-anyway-in-jquery-to-change-part-of-an-image/ https://jqueryplugins.info/2011/09/is-there-anyway-in-jquery-to-change-part-of-an-image/#comments Sat, 03 Sep 2011 02:13:59 +0000 Admin https://jqueryplugins.info/2011/09/is-there-anyway-in-jquery-to-change-part-of-an-image/ Post link: is there anyway in jquery to change part of an image

if i have an image (jpg, png, gif .doesn’t really matter ) and i want to have some javascript code change part of an image. for example, lets say i...

]]>
Post link: is there anyway in jquery to change part of an image

if i have an image (jpg, png, gif .doesn’t really matter ) and i want to have some javascript code change part of an image.

for example, lets say i have this picture of a cookie like here.

and i have a color picker that lets a person select a color. I want to change the color of part of the image (in this case, lets say the color of the chocolate chips) to the color that is picked.

is that possible to do in javascript / jquery ?

newest questions tagged jquery – Stack Overflow

]]>
https://jqueryplugins.info/2011/09/is-there-anyway-in-jquery-to-change-part-of-an-image/feed/ 0
jQuery addClass in unlikely part of element https://jqueryplugins.info/2011/08/jquery-addclass-in-unlikely-part-of-element/ https://jqueryplugins.info/2011/08/jquery-addclass-in-unlikely-part-of-element/#comments Wed, 31 Aug 2011 15:30:54 +0000 Admin https://jqueryplugins.info/2011/08/jquery-addclass-in-unlikely-part-of-element/ Post link: jQuery addClass in unlikely part of element

I really hate the way my shopping cart is set up as I CANNOT edit much of the pages. So I resort to using jQuery which is both fun and...

]]>
Post link: jQuery addClass in unlikely part of element

I really hate the way my shopping cart is set up as I CANNOT edit much of the pages. So I resort to using jQuery which is both fun and frustrating because we have to use so much of it. That being said..I am trying to find a way through jQuery to add a class specifically for the price given two situations. Unfortunately the price is not set up to add a class to it specifically (why my shopping cart did it this way is beyond me!). Any help would be appreciated!

<-- Situation 1 -->
<b>
  <font class="text colors_text">
  <b>Regular Price: </b>
  </font>
   $  2,533.31
</b> 

<-- Situation 2 -->
<b>
  <span class="exclusive">Exclusive Price:</span>
  <font class="pricecolor colors_productprice">$  2,343.30</font>
  </span>
</b>

I’m not going to dwell into the reasons why I need to add a class to these prices because there is a lot riding behind the class name which enables much of the page to render correctly. The class names for each situation should be the SAME. Situation 2 I may be able to handle with ease $ ('.exclusive').next('font').addClass('priceis') but Situation 1 is pretty tough.

newest questions tagged jquery – Stack Overflow

]]>
https://jqueryplugins.info/2011/08/jquery-addclass-in-unlikely-part-of-element/feed/ 0
Parse ANY RSS feed to be used in any way you want, php or ajax part 2 https://jqueryplugins.info/2011/08/parse-any-rss-feed-to-be-used-in-any-way-you-want-php-or-ajax-part-2/ https://jqueryplugins.info/2011/08/parse-any-rss-feed-to-be-used-in-any-way-you-want-php-or-ajax-part-2/#comments Wed, 24 Aug 2011 12:05:36 +0000 Admin https://jqueryplugins.info/2011/08/parse-any-rss-feed-to-be-used-in-any-way-you-want-php-or-ajax-part-2/ Post link: Parse ANY RSS feed to be used in any way you want, php or ajax part 2

Use this simple php file to grab ANY RSS feed and use it, either by way of PHP or by way of ajax and jquery. Grab the files here at...

]]>
Post link: Parse ANY RSS feed to be used in any way you want, php or ajax part 2

Use this simple php file to grab ANY RSS feed and use it, either by way of PHP or by way of ajax and jquery. Grab the files here at optikalefx.com and xml2.txt

]]>
https://jqueryplugins.info/2011/08/parse-any-rss-feed-to-be-used-in-any-way-you-want-php-or-ajax-part-2/feed/ 0
Leggere dati da un file xml con jquery ( part – 1 ) https://jqueryplugins.info/2011/08/leggere-dati-da-un-file-xml-con-jquery-part-1/ https://jqueryplugins.info/2011/08/leggere-dati-da-un-file-xml-con-jquery-part-1/#comments Wed, 24 Aug 2011 04:07:09 +0000 Admin https://jqueryplugins.info/2011/08/leggere-dati-da-un-file-xml-con-jquery-part-1/ Post link: Leggere dati da un file xml con jquery ( part – 1 )

Per scaricare il codice : hzannino1973.wordpress.com Come leggere in modo semplice ed efficace i dati contenuti in un file xml senza l’utilizzo di linguaggi lato server. Guarda la ( parte...

]]>
Post link: Leggere dati da un file xml con jquery ( part – 1 )

Per scaricare il codice : hzannino1973.wordpress.com Come leggere in modo semplice ed efficace i dati contenuti in un file xml senza l’utilizzo di linguaggi lato server. Guarda la ( parte – 2 )
Video Rating: 0 / 5

]]>
https://jqueryplugins.info/2011/08/leggere-dati-da-un-file-xml-con-jquery-part-1/feed/ 0
Zend Framework 1.9 tutorial 13: ZendX_Jquery introduction part 2 https://jqueryplugins.info/2011/08/zend-framework-1-9-tutorial-13-zendx_jquery-introduction-part-2/ https://jqueryplugins.info/2011/08/zend-framework-1-9-tutorial-13-zendx_jquery-introduction-part-2/#comments Tue, 23 Aug 2011 15:12:16 +0000 Admin https://jqueryplugins.info/2011/08/zend-framework-1-9-tutorial-13-zendx_jquery-introduction-part-2/ Post link: Zend Framework 1.9 tutorial 13: ZendX_Jquery introduction part 2

Introduction to jQuery and Zend Framework integration. For full quality, source code and discussions visit alex-tech-adventures.com Video Rating: 5 / 5

]]>
Post link: Zend Framework 1.9 tutorial 13: ZendX_Jquery introduction part 2

Introduction to jQuery and Zend Framework integration. For full quality, source code and discussions visit alex-tech-adventures.com
Video Rating: 5 / 5

]]>
https://jqueryplugins.info/2011/08/zend-framework-1-9-tutorial-13-zendx_jquery-introduction-part-2/feed/ 0
PHP Tutorials: Shoutbox (Part 1/3) https://jqueryplugins.info/2011/08/php-tutorials-shoutbox-part-13/ https://jqueryplugins.info/2011/08/php-tutorials-shoutbox-part-13/#comments Tue, 23 Aug 2011 03:07:24 +0000 Admin https://jqueryplugins.info/2011/08/php-tutorials-shoutbox-part-13/ Post link: PHP Tutorials: Shoutbox (Part 1/3)

With jQuery. How to create an easily integratable shoutbox. Base source code is available in the phpacademy forum. WEBSITE phpacademy.org FORUM http TWITTER twitter.com FACEBOOK www.facebook.com Video Rating: 4 /...

]]>
Post link: PHP Tutorials: Shoutbox (Part 1/3)

With jQuery. How to create an easily integratable shoutbox. Base source code is available in the phpacademy forum. WEBSITE phpacademy.org FORUM http TWITTER twitter.com FACEBOOK www.facebook.com
Video Rating: 4 / 5

Vídeo de demonstração do artigo “jQuery (jqModal) e ASP.NET + AJAX: Resolvendo alguns probleminhas” do site neomatrixtech.blogspot.com
Video Rating: 0 / 5

]]>
https://jqueryplugins.info/2011/08/php-tutorials-shoutbox-part-13/feed/ 0
Zend Framework 1.9 tutorial 13: ZendX_Jquery introduction part 1 https://jqueryplugins.info/2011/08/zend-framework-1-9-tutorial-13-zendx_jquery-introduction-part-1/ https://jqueryplugins.info/2011/08/zend-framework-1-9-tutorial-13-zendx_jquery-introduction-part-1/#comments Mon, 22 Aug 2011 11:11:01 +0000 Admin https://jqueryplugins.info/2011/08/zend-framework-1-9-tutorial-13-zendx_jquery-introduction-part-1/ Post link: Zend Framework 1.9 tutorial 13: ZendX_Jquery introduction part 1

Introduction to jQuery and Zend Framework integration. For full quality, source code and discussions visit alex-tech-adventures.com

]]>
Post link: Zend Framework 1.9 tutorial 13: ZendX_Jquery introduction part 1

Introduction to jQuery and Zend Framework integration. For full quality, source code and discussions visit alex-tech-adventures.com

]]>
https://jqueryplugins.info/2011/08/zend-framework-1-9-tutorial-13-zendx_jquery-introduction-part-1/feed/ 0