Browse by Tags

Related Posts

  • Re: How to overlap the image one by one in the same position ?

    Hi rickycrc, Interesting! I've analyzed the website ( http://www.shirtsmyway.com/design_myshirt.php ) and found out how they are designing shirts on the fly . Here it is: The site is using jQuery JavaScript library for DOM manipulation and for making AJAX calls. Suppose you selected a "black"...
    Posted to ASP.NET AJAX Discussion and Suggestions (Forum) by novogeek on 06-13-2009, 12:00 AM
    Filed under: jquery
  • jQuery ready function

    I am trying to add jQuery to an ASP.NET, but I think the method where I include my javascript files is not compatible with jQuery. I am using master pages, and I include the jquery*.js file in the master.aspx.cs file, like so: // add the jQuery library to every page LiteralControl jQueryCtrl = new LiteralControl...
    Posted to Client Side Web Development (Forum) by goodideadave on 06-12-2009, 12:00 AM
    Filed under: jquery
  • Re: Mistery of the disappearing cursor...

    Hi EJM, Yeah., as others said, you should go with AJAX functionality. In such custom requirements, jQuery will help you a lot. You can simply make an AJAX call like this using jQuery: $(document).ready(function(){ function fnSaveDetails() { //Loop through all textboxes in your form and build an object...
    Posted to Client Side Web Development (Forum) by novogeek on 06-11-2009, 12:00 AM
    Filed under: jquery
  • Re: Change Image Src on disable

    Hi Amituttam, You can achieve this with ease using jQuery selectors. I have done a sample. It has 3 image buttons with src="Enabled.jpg". On clicking the button "btnDisable", their src changes to "Disabled.jpg". Here is the jQuery implementation. HTML Code: <body>...
    Posted to Client Side Web Development (Forum) by novogeek on 06-10-2009, 12:00 AM
    Filed under: jquery
  • Re: Need control(s) for drag and drop text and move/resize images for jpg/pdf-output

    Hi wakazulu, All these requirements can be easily met using jQuery plugins. e.g., Here is an example of shopping cart (for drag/drop) , mashup (for font change, text resize/dragdrop) which I made using jQuery. Also, there are plugins for uploading/cropping images. I can give you more info on these if...
    Posted to ASP.NET AJAX UI (Forum) by novogeek on 06-10-2009, 12:00 AM
    Filed under: jQuery
  • Re: any chance to run my simple JScripts on every browser ?

    Hi mezzanine74, If you are looking for cross browser compatible code, use jQuery and its selectors. Using jQuery, for fetching the value of your target element, you can write this simple code, which is cross browser compatible. var targetValue=$("#YourElementID).val(); Apart from easy implementation...
    Posted to Client Side Web Development (Forum) by novogeek on 06-10-2009, 12:00 AM
    Filed under: jquery
  • Re: adding an attribute to an image

    Hi Nigel2000, As per the principles of UnObtrusive JavaScript, you should always separate you markup and JavaScript. So it is always a good practice NOT to include JavaScript events like onclick="fnClick()" in your HTML or in your code behind. Please go through this pdf which will give you...
    Posted to Client Side Web Development (Forum) by novogeek on 06-10-2009, 12:00 AM
    Filed under: jquery
  • Re: adding an attribute to an image

    Hi Nigel2000, As per the principles of UnObtrusive JavaScript, you should always separate you markup and JavaScript. So it is always a good practice NOT to include JavaScript events like onclick="fnClick()" in your HTML or also in your code behind. Please go through this pdf which will give...
    Posted to Client Side Web Development (Forum) by novogeek on 06-10-2009, 12:00 AM
    Filed under: jquery
  • Re: Checkbox Control does not work within accordion

    Hi Qasimali84, I have faced similar issues with checkboxes & accordion previously and posted in asp.net forums here : http://forums.asp.net/t/1387187.aspx but unfortunately, I couldn't get timely reply. I have tried jQuery's slide effects for achieving similar result and it worked! Here is...
    Posted to ASP.NET AJAX UI (Forum) by novogeek on 06-09-2009, 12:00 AM
    Filed under: Accordion Control, jQuery
  • Using Dreamweaver/jQuery for Views

    I'm the front end/UI engineer half of a two man MVC developement team. Ideally, I'd like to use Dreamweaver for all formatting and UI work. To the degree that Views should be logic-free, can I depend on jQuery to mediate the traffic between the controller and the view and completely avoid aspx...
    Posted to ASP.NET MVC (Forum) by juststeve on 06-08-2009, 12:00 AM
    Filed under: view, jquery
Page 1 of 20 (197 items) 1 2 3 4 5 Next > ... Last »