Making instance of ApplicativeOrphaned instances in HaskellEq instance has some strange comparisonsWhy can I not make String an instance of a typeclass?Good examples of Not a Functor/Functor/Applicative/Monad?Confused by the meaning of the 'Alternative' type class and its relationship to other type classesinstance Alternative ZipList in Haskell?How to test the homomorphism law of an Applicative instance?Partially applying a type in a type constructorInstance applicative on datatype `List`Why is this applicative instance unlawful?

Can SQL Server create collisions in system generated constraint names?

How did Captain America manage to do this?

Does a large simulator bay have standard public address announcements?

Phrase for the opposite of "foolproof"

Is there a way to generate a list of distinct numbers such that no two subsets ever have an equal sum?

Is Diceware more secure than a long passphrase?

What's the name of these pliers?

How to write a column outside the braces in a matrix?

How exactly does Hawking radiation decrease the mass of black holes?

Is the claim "Employers won't employ people with no 'social media presence'" realistic?

How to limit Drive Letters Windows assigns to new removable USB drives

Extension of 2-adic valuation to the real numbers

Dynamic SOQL query relationship with field visibility for Users

How to denote matrix elements succinctly?

What are the characteristics of a typeless programming language?

What happened to Captain America in Endgame?

Aliens crash on Earth and go into stasis to wait for technology to fix their ship

Why does nature favour the Laplacian?

Two field separators (colon and space) in awk

Map of water taps to fill bottles

I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?

What does ゆーか mean?

How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?

Is there really no use for MD5 anymore?



Making instance of Applicative


Orphaned instances in HaskellEq instance has some strange comparisonsWhy can I not make String an instance of a typeclass?Good examples of Not a Functor/Functor/Applicative/Monad?Confused by the meaning of the 'Alternative' type class and its relationship to other type classesinstance Alternative ZipList in Haskell?How to test the homomorphism law of an Applicative instance?Partially applying a type in a type constructorInstance applicative on datatype `List`Why is this applicative instance unlawful?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








5















Still not a hundred percent shure how to make instances of the more complex types. Have this:



data CouldBe a = Is a | Lost deriving (Show, Ord) 


Made an instance of Functor, using Maybe as an example:



instance Functor CouldBe where 
fmap f (Is x) = Is (f x)
fmap f Lost = Lost


For doing something like this:



tupleCouldBe :: CouldBe a -> CouldBe b -> CouldBe (a,b)
tupleCouldBe x y = (,) <$> x <*> y


CouldBe needs to be an instance of Applicative, but how would you go about that? Sure I can look it up and copy it, but I want to learn the process behind it and finally end up with the instance declaration of CouldBe.










share|improve this question

















  • 2





    Start by writing down the functions you need to define to make CouldBe an instance of Applicative, with their type signatures (specialised to CouldBe). You should find there's really only one sensible solution if you let the types guide you. And your Functor instance shows you how to handle Lost.

    – Robin Zigmond
    Mar 9 at 9:15







  • 4





    Pattern match as much as possible and then construct the results in the only way that type checks. This works often.

    – luqui
    Mar 9 at 9:17







  • 2





    Logically I'd be defining pure and <*>, correct? I think pure should be simple like pure a = Is a, but doesn't <*> require more variants...

    – Madderote
    Mar 9 at 9:28






  • 1





    Try pattern matching on each side of <*>; this should give four different cases. Then use @RobinZigmond's advice and 'follow the types' for each case. One other thing which could help is typed holes: if you don't know what to put somewhere, use an underscore _, and GHC will give you the type which should be there. They're incredibly useful in these sort of 'follow the types' situations.

    – bradrn
    Mar 9 at 9:44






  • 1





    Note that your CouldBe is isomorphic to Haskell's built-in Maybe type, so any time you want to know how to write an instance for your type, you can just look how the corresponding instance for Maybe is written.

    – Joseph Sible
    Mar 9 at 16:43

















5















Still not a hundred percent shure how to make instances of the more complex types. Have this:



data CouldBe a = Is a | Lost deriving (Show, Ord) 


Made an instance of Functor, using Maybe as an example:



instance Functor CouldBe where 
fmap f (Is x) = Is (f x)
fmap f Lost = Lost


For doing something like this:



tupleCouldBe :: CouldBe a -> CouldBe b -> CouldBe (a,b)
tupleCouldBe x y = (,) <$> x <*> y


CouldBe needs to be an instance of Applicative, but how would you go about that? Sure I can look it up and copy it, but I want to learn the process behind it and finally end up with the instance declaration of CouldBe.










share|improve this question

















  • 2





    Start by writing down the functions you need to define to make CouldBe an instance of Applicative, with their type signatures (specialised to CouldBe). You should find there's really only one sensible solution if you let the types guide you. And your Functor instance shows you how to handle Lost.

    – Robin Zigmond
    Mar 9 at 9:15







  • 4





    Pattern match as much as possible and then construct the results in the only way that type checks. This works often.

    – luqui
    Mar 9 at 9:17







  • 2





    Logically I'd be defining pure and <*>, correct? I think pure should be simple like pure a = Is a, but doesn't <*> require more variants...

    – Madderote
    Mar 9 at 9:28






  • 1





    Try pattern matching on each side of <*>; this should give four different cases. Then use @RobinZigmond's advice and 'follow the types' for each case. One other thing which could help is typed holes: if you don't know what to put somewhere, use an underscore _, and GHC will give you the type which should be there. They're incredibly useful in these sort of 'follow the types' situations.

    – bradrn
    Mar 9 at 9:44






  • 1





    Note that your CouldBe is isomorphic to Haskell's built-in Maybe type, so any time you want to know how to write an instance for your type, you can just look how the corresponding instance for Maybe is written.

    – Joseph Sible
    Mar 9 at 16:43













5












5








5








Still not a hundred percent shure how to make instances of the more complex types. Have this:



data CouldBe a = Is a | Lost deriving (Show, Ord) 


Made an instance of Functor, using Maybe as an example:



instance Functor CouldBe where 
fmap f (Is x) = Is (f x)
fmap f Lost = Lost


For doing something like this:



tupleCouldBe :: CouldBe a -> CouldBe b -> CouldBe (a,b)
tupleCouldBe x y = (,) <$> x <*> y


CouldBe needs to be an instance of Applicative, but how would you go about that? Sure I can look it up and copy it, but I want to learn the process behind it and finally end up with the instance declaration of CouldBe.










share|improve this question














Still not a hundred percent shure how to make instances of the more complex types. Have this:



data CouldBe a = Is a | Lost deriving (Show, Ord) 


Made an instance of Functor, using Maybe as an example:



instance Functor CouldBe where 
fmap f (Is x) = Is (f x)
fmap f Lost = Lost


For doing something like this:



tupleCouldBe :: CouldBe a -> CouldBe b -> CouldBe (a,b)
tupleCouldBe x y = (,) <$> x <*> y


CouldBe needs to be an instance of Applicative, but how would you go about that? Sure I can look it up and copy it, but I want to learn the process behind it and finally end up with the instance declaration of CouldBe.







haskell typeclass applicative






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 9 at 9:06









MadderoteMadderote

350211




350211







  • 2





    Start by writing down the functions you need to define to make CouldBe an instance of Applicative, with their type signatures (specialised to CouldBe). You should find there's really only one sensible solution if you let the types guide you. And your Functor instance shows you how to handle Lost.

    – Robin Zigmond
    Mar 9 at 9:15







  • 4





    Pattern match as much as possible and then construct the results in the only way that type checks. This works often.

    – luqui
    Mar 9 at 9:17







  • 2





    Logically I'd be defining pure and <*>, correct? I think pure should be simple like pure a = Is a, but doesn't <*> require more variants...

    – Madderote
    Mar 9 at 9:28






  • 1





    Try pattern matching on each side of <*>; this should give four different cases. Then use @RobinZigmond's advice and 'follow the types' for each case. One other thing which could help is typed holes: if you don't know what to put somewhere, use an underscore _, and GHC will give you the type which should be there. They're incredibly useful in these sort of 'follow the types' situations.

    – bradrn
    Mar 9 at 9:44






  • 1





    Note that your CouldBe is isomorphic to Haskell's built-in Maybe type, so any time you want to know how to write an instance for your type, you can just look how the corresponding instance for Maybe is written.

    – Joseph Sible
    Mar 9 at 16:43












  • 2





    Start by writing down the functions you need to define to make CouldBe an instance of Applicative, with their type signatures (specialised to CouldBe). You should find there's really only one sensible solution if you let the types guide you. And your Functor instance shows you how to handle Lost.

    – Robin Zigmond
    Mar 9 at 9:15







  • 4





    Pattern match as much as possible and then construct the results in the only way that type checks. This works often.

    – luqui
    Mar 9 at 9:17







  • 2





    Logically I'd be defining pure and <*>, correct? I think pure should be simple like pure a = Is a, but doesn't <*> require more variants...

    – Madderote
    Mar 9 at 9:28






  • 1





    Try pattern matching on each side of <*>; this should give four different cases. Then use @RobinZigmond's advice and 'follow the types' for each case. One other thing which could help is typed holes: if you don't know what to put somewhere, use an underscore _, and GHC will give you the type which should be there. They're incredibly useful in these sort of 'follow the types' situations.

    – bradrn
    Mar 9 at 9:44






  • 1





    Note that your CouldBe is isomorphic to Haskell's built-in Maybe type, so any time you want to know how to write an instance for your type, you can just look how the corresponding instance for Maybe is written.

    – Joseph Sible
    Mar 9 at 16:43







2




2





Start by writing down the functions you need to define to make CouldBe an instance of Applicative, with their type signatures (specialised to CouldBe). You should find there's really only one sensible solution if you let the types guide you. And your Functor instance shows you how to handle Lost.

– Robin Zigmond
Mar 9 at 9:15






Start by writing down the functions you need to define to make CouldBe an instance of Applicative, with their type signatures (specialised to CouldBe). You should find there's really only one sensible solution if you let the types guide you. And your Functor instance shows you how to handle Lost.

– Robin Zigmond
Mar 9 at 9:15





4




4





Pattern match as much as possible and then construct the results in the only way that type checks. This works often.

– luqui
Mar 9 at 9:17






Pattern match as much as possible and then construct the results in the only way that type checks. This works often.

– luqui
Mar 9 at 9:17





2




2





Logically I'd be defining pure and <*>, correct? I think pure should be simple like pure a = Is a, but doesn't <*> require more variants...

– Madderote
Mar 9 at 9:28





Logically I'd be defining pure and <*>, correct? I think pure should be simple like pure a = Is a, but doesn't <*> require more variants...

– Madderote
Mar 9 at 9:28




1




1





Try pattern matching on each side of <*>; this should give four different cases. Then use @RobinZigmond's advice and 'follow the types' for each case. One other thing which could help is typed holes: if you don't know what to put somewhere, use an underscore _, and GHC will give you the type which should be there. They're incredibly useful in these sort of 'follow the types' situations.

– bradrn
Mar 9 at 9:44





Try pattern matching on each side of <*>; this should give four different cases. Then use @RobinZigmond's advice and 'follow the types' for each case. One other thing which could help is typed holes: if you don't know what to put somewhere, use an underscore _, and GHC will give you the type which should be there. They're incredibly useful in these sort of 'follow the types' situations.

– bradrn
Mar 9 at 9:44




1




1





Note that your CouldBe is isomorphic to Haskell's built-in Maybe type, so any time you want to know how to write an instance for your type, you can just look how the corresponding instance for Maybe is written.

– Joseph Sible
Mar 9 at 16:43





Note that your CouldBe is isomorphic to Haskell's built-in Maybe type, so any time you want to know how to write an instance for your type, you can just look how the corresponding instance for Maybe is written.

– Joseph Sible
Mar 9 at 16:43












1 Answer
1






active

oldest

votes


















3














You just write it out, following the types:



instance Applicative CouldBe where
-
Minimal complete definition:
pure, ((<*>)
pure a = fa
where
fa = ....

liftA2 abc fa fb = fc
where
fc = ....


According to



data CouldBe a = Is a | Lost


our toolset is



Is :: a -> CouldBe a
Lost :: CouldBe a


but we can also use pattern matching, e.g.



couldBe is lost (Is a) = is a
couldBe is lost (Lost) = lost
couldBe :: ? -> ? -> CouldBe a -> b
couldBe :: ? -> b -> CouldBe a -> b
couldBe :: (a -> b) -> b -> CouldBe a -> b


So,



 -- pure :: a -> f a 
pure :: a -> CouldBe a


matches up with



 Is :: a -> CouldBe a


so we define



 pure a = Is a


Then, for liftA2, we follow the data cases:



 -- liftA2 :: (a -> b -> c) -> f a -> f b -> f c 
-- liftA2 :: (a -> b -> c) -> CouldBe a -> CouldBe b -> CouldBe c
liftA2 abc Lost _ = ...
liftA2 abc _ Lost = ...
liftA2 abc (Is a) (Is b) = fc
where
c = abc a b
fc = .... -- create an `f c` from `c`:
-- do we have a `c -> CouldBe c` ?
-- do we have an `a -> CouldBe a` ? (it's the same type)


But in the first two cases we don't have an a or a b; so we have to come up with a CouldBe c out of nothing. We do have this tool in our toolset as well.



Having completed all the missing pieces, we can substitute the expressions directly into the definitions, eliminating all the unneeded interim values / variables.






share|improve this answer

























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55075707%2fmaking-instance-of-applicative%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    You just write it out, following the types:



    instance Applicative CouldBe where
    -
    Minimal complete definition:
    pure, ((<*>)
    pure a = fa
    where
    fa = ....

    liftA2 abc fa fb = fc
    where
    fc = ....


    According to



    data CouldBe a = Is a | Lost


    our toolset is



    Is :: a -> CouldBe a
    Lost :: CouldBe a


    but we can also use pattern matching, e.g.



    couldBe is lost (Is a) = is a
    couldBe is lost (Lost) = lost
    couldBe :: ? -> ? -> CouldBe a -> b
    couldBe :: ? -> b -> CouldBe a -> b
    couldBe :: (a -> b) -> b -> CouldBe a -> b


    So,



     -- pure :: a -> f a 
    pure :: a -> CouldBe a


    matches up with



     Is :: a -> CouldBe a


    so we define



     pure a = Is a


    Then, for liftA2, we follow the data cases:



     -- liftA2 :: (a -> b -> c) -> f a -> f b -> f c 
    -- liftA2 :: (a -> b -> c) -> CouldBe a -> CouldBe b -> CouldBe c
    liftA2 abc Lost _ = ...
    liftA2 abc _ Lost = ...
    liftA2 abc (Is a) (Is b) = fc
    where
    c = abc a b
    fc = .... -- create an `f c` from `c`:
    -- do we have a `c -> CouldBe c` ?
    -- do we have an `a -> CouldBe a` ? (it's the same type)


    But in the first two cases we don't have an a or a b; so we have to come up with a CouldBe c out of nothing. We do have this tool in our toolset as well.



    Having completed all the missing pieces, we can substitute the expressions directly into the definitions, eliminating all the unneeded interim values / variables.






    share|improve this answer





























      3














      You just write it out, following the types:



      instance Applicative CouldBe where
      -
      Minimal complete definition:
      pure, ((<*>)
      pure a = fa
      where
      fa = ....

      liftA2 abc fa fb = fc
      where
      fc = ....


      According to



      data CouldBe a = Is a | Lost


      our toolset is



      Is :: a -> CouldBe a
      Lost :: CouldBe a


      but we can also use pattern matching, e.g.



      couldBe is lost (Is a) = is a
      couldBe is lost (Lost) = lost
      couldBe :: ? -> ? -> CouldBe a -> b
      couldBe :: ? -> b -> CouldBe a -> b
      couldBe :: (a -> b) -> b -> CouldBe a -> b


      So,



       -- pure :: a -> f a 
      pure :: a -> CouldBe a


      matches up with



       Is :: a -> CouldBe a


      so we define



       pure a = Is a


      Then, for liftA2, we follow the data cases:



       -- liftA2 :: (a -> b -> c) -> f a -> f b -> f c 
      -- liftA2 :: (a -> b -> c) -> CouldBe a -> CouldBe b -> CouldBe c
      liftA2 abc Lost _ = ...
      liftA2 abc _ Lost = ...
      liftA2 abc (Is a) (Is b) = fc
      where
      c = abc a b
      fc = .... -- create an `f c` from `c`:
      -- do we have a `c -> CouldBe c` ?
      -- do we have an `a -> CouldBe a` ? (it's the same type)


      But in the first two cases we don't have an a or a b; so we have to come up with a CouldBe c out of nothing. We do have this tool in our toolset as well.



      Having completed all the missing pieces, we can substitute the expressions directly into the definitions, eliminating all the unneeded interim values / variables.






      share|improve this answer



























        3












        3








        3







        You just write it out, following the types:



        instance Applicative CouldBe where
        -
        Minimal complete definition:
        pure, ((<*>)
        pure a = fa
        where
        fa = ....

        liftA2 abc fa fb = fc
        where
        fc = ....


        According to



        data CouldBe a = Is a | Lost


        our toolset is



        Is :: a -> CouldBe a
        Lost :: CouldBe a


        but we can also use pattern matching, e.g.



        couldBe is lost (Is a) = is a
        couldBe is lost (Lost) = lost
        couldBe :: ? -> ? -> CouldBe a -> b
        couldBe :: ? -> b -> CouldBe a -> b
        couldBe :: (a -> b) -> b -> CouldBe a -> b


        So,



         -- pure :: a -> f a 
        pure :: a -> CouldBe a


        matches up with



         Is :: a -> CouldBe a


        so we define



         pure a = Is a


        Then, for liftA2, we follow the data cases:



         -- liftA2 :: (a -> b -> c) -> f a -> f b -> f c 
        -- liftA2 :: (a -> b -> c) -> CouldBe a -> CouldBe b -> CouldBe c
        liftA2 abc Lost _ = ...
        liftA2 abc _ Lost = ...
        liftA2 abc (Is a) (Is b) = fc
        where
        c = abc a b
        fc = .... -- create an `f c` from `c`:
        -- do we have a `c -> CouldBe c` ?
        -- do we have an `a -> CouldBe a` ? (it's the same type)


        But in the first two cases we don't have an a or a b; so we have to come up with a CouldBe c out of nothing. We do have this tool in our toolset as well.



        Having completed all the missing pieces, we can substitute the expressions directly into the definitions, eliminating all the unneeded interim values / variables.






        share|improve this answer















        You just write it out, following the types:



        instance Applicative CouldBe where
        -
        Minimal complete definition:
        pure, ((<*>)
        pure a = fa
        where
        fa = ....

        liftA2 abc fa fb = fc
        where
        fc = ....


        According to



        data CouldBe a = Is a | Lost


        our toolset is



        Is :: a -> CouldBe a
        Lost :: CouldBe a


        but we can also use pattern matching, e.g.



        couldBe is lost (Is a) = is a
        couldBe is lost (Lost) = lost
        couldBe :: ? -> ? -> CouldBe a -> b
        couldBe :: ? -> b -> CouldBe a -> b
        couldBe :: (a -> b) -> b -> CouldBe a -> b


        So,



         -- pure :: a -> f a 
        pure :: a -> CouldBe a


        matches up with



         Is :: a -> CouldBe a


        so we define



         pure a = Is a


        Then, for liftA2, we follow the data cases:



         -- liftA2 :: (a -> b -> c) -> f a -> f b -> f c 
        -- liftA2 :: (a -> b -> c) -> CouldBe a -> CouldBe b -> CouldBe c
        liftA2 abc Lost _ = ...
        liftA2 abc _ Lost = ...
        liftA2 abc (Is a) (Is b) = fc
        where
        c = abc a b
        fc = .... -- create an `f c` from `c`:
        -- do we have a `c -> CouldBe c` ?
        -- do we have an `a -> CouldBe a` ? (it's the same type)


        But in the first two cases we don't have an a or a b; so we have to come up with a CouldBe c out of nothing. We do have this tool in our toolset as well.



        Having completed all the missing pieces, we can substitute the expressions directly into the definitions, eliminating all the unneeded interim values / variables.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 11 at 10:46

























        answered Mar 9 at 10:39









        Will NessWill Ness

        47k469127




        47k469127





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55075707%2fmaking-instance-of-applicative%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

            Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

            Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved